You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
129 B
Python

import math
print(' (F) (I)')
for i in range(6):
print('{}/2 = {} {}'.format(i, i/2, math.modf(i/2.0)))