Python Program to Convert Decimal to Binary
Topic: Python Program to Convert Decimal to Binary
Solution
dec = 344 print("The decimal value of", dec, "is:") print(bin(dec), "in binary.")
List all Python Programs
Solution
dec = 344 print("The decimal value of", dec, "is:") print(bin(dec), "in binary.")