“Binär- bis Dezimalkonvertierungspython” Code-Antworten

Binär bis Dezimal in Python

int(binaryString, 2)
Bored Bison

Binär- bis Dezimalkonvertierungspython

print("\nBASE 10 TO BASE 2 TO 16\n")

decimal_numbers = [4799, 400]
for number in decimal_numbers:
    binary = bin(number)[2:]
    hexadec = hex(number)[2:]
    print(number, binary, sep=" ==> ")
    print(number, hexadec, sep=" ==> ")


print("\nBASE 2 TO BASE 10 AND 16\n")

binary_list = ["1111110001001110", "111111"]

for binary in binary_list:

    decimal = int(binary, 2)
    hexa = hex(decimal)[2:]
    print(binary, decimal, sep=" >>>> ")
    print(binary, hexa, sep=" >>>> ")


print("\nBASE 16 TO BASE 10 AND 2 NOW\n")

hex_numbers = ["3C7D", "FC4E"]
for hexa in hex_numbers:
    decimal_from_hex = int(hexa, 16)
    binary_from_hex = bin(int(hexa, 16))[2:]

    print(hexa, decimal_from_hex, sep="==")
    print(hexa, binary_from_hex, sep="==")

Pacifique RUBASHA

Wie man Binärin in Python in Ganzzahl umwandelt

def binary2int(binary): 
    int_val, i, n = 0, 0, 0
    while(binary != 0): 
        a = binary % 10
        int_val = int_val + a * pow(2, i) 
        binary = binary//10
        i += 1
    print(int_val) 
    

binary2int(101)
Shy Skunk

Ähnliche Antworten wie “Binär- bis Dezimalkonvertierungspython”

Fragen ähnlich wie “Binär- bis Dezimalkonvertierungspython”

Weitere verwandte Antworten zu “Binär- bis Dezimalkonvertierungspython” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen