Si te encuentras con algún detalle que te causa duda puedes dejarnos un comentario y te ayudaremos lo más rápido posible.
Ejemplo 1: cómo obtener el valor binario en python
bin(19) # will return'0b10011'
#or you can do
def binary(num):
array =[]
#makes the binary value
while(num >0):
sol1 = num /2
check = sol1 -int(sol1)if(check >0):
array.append("1")
num = sol1 -0.5else:
array.append("0")
num = sol1
#makes sure the binary value is a minimum of4 bits long
while(len(array)<4):
array.append("0")
#reverses the array
array = array[::-1]
#joins the array into a string,return the string
string =''.join(array)return string
#binary(19) will return10011
Ejemplo 2: decimal a octal python
# Python program to convert decimal into other number systems
dec =344print("The decimal value of", dec,"is:")print(bin(dec),"in binary.")print(oct(dec),"in octal.")print(hex(dec),"in hexadecimal.")
Ejemplo 3: biblioteca de python para convertir decimal en octal y hexadecimal
dec =13print(bin(dec),oct(dec),hex(dec)) #prints decimal,octal,hexadecimal value of13
Sección de Reseñas y Valoraciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)