Answer:
for y in range(88, 43, -4):
print(y, end=" ")
Explanation:
yw
124.59 in expanded form is:
100 + 20 + 4 + 0.5 + 0.09
Answer:
To convert integer to binary, start with the integer in question and divide it by 2 keeping notice of the quotient and the remainder. Continue dividing the quotient by 2 until you get a quotient of zero. Then just write out the remainders in the reverse order.
Explanation: