Computer Science, asked by simdhami000, 1 month ago

Convert the following decimal numbers to its equivalent binary number...
266
300
58
167
75​

Answers

Answered by sravanimekala3142
1

Answer:

n = [266,300,58,167,75]

for i in n:

print(bin(i).replace("0b"," "),end="\n")

Explanation:

100001010

100101100

111010

10100111

1001011

Similar questions