2Warm

1 · Marios Daskalas · Nov. 22, 2022, 12:07 p.m.
Summary
Can you convert the number 42 (base 10) to binary (base 2)? Every decimal number has a representation in a binary form. For example, take the number 3, which is in the decimal format. In the binary form it is equal to ‘11’. If you want to learn about this, I recommend look at the table below. Decimal/Binary Conversion Table. Image Credit: Decimal/Binary Conversion Table python3 print(bin(42)[2:]) The program above converts the decimal number ‘42’ to it’s binary representation....