Q:

Python program to print the binary value of the numbers from 1 to N

belongs to collection: Python miscellaneous programs

0

Example:

    Input:
    n = 5

    Output:
    Binary value of  1  is:  0b1
    Binary value of  2  is:  0b10
    Binary value of  3  is:  0b11
    Binary value of  4  is:  0b100
    Binary value of  5  is:  0b101

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Python code:

# Python program to print the binary value 
# of the numbers from 1 to N

# input the value of N
n = int(input("Enter the value of N: "))

# printing the binary value from 1 to N
for i in range(1, n+1):
    print("Binary value of ", i, " is: ", bin(i))

Output

First run:
Enter the value of N: 5
Binary value of  1  is:  0b1
Binary value of  2  is:  0b10
Binary value of  3  is:  0b11
Binary value of  4  is:  0b100
Binary value of  5  is:  0b101	

Second run:
Enter the value of N: 11
Binary value of  1  is:  0b1
Binary value of  2  is:  0b10
Binary value of  3  is:  0b11
Binary value of  4  is:  0b100
Binary value of  5  is:  0b101
Binary value of  6  is:  0b110
Binary value of  7  is:  0b111
Binary value of  8  is:  0b1000
Binary value of  9  is:  0b1001
Binary value of  10  is:  0b1010
Binary value of  11  is:  0b1011

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Python miscellaneous programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Design Traditional and Magic Calculator in Python3... >>
<< Python program to print an array of bytes represen...