Computer Science, asked by shlokk, 9 months ago

python program to convert number to decimal with steps​

Answers

Answered by Anonymous
1

Answer:

heya mate ☺

Python Code: b_num = list(input("Input a binary number: ")) value = 0 for i in range(len(b_num)): digit = b_num.pop() if digit == '1': value = value + pow(2, i) print("The decimal value of the number is", value)

Similar questions