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.

5 lines
141 B
Python

import fractions
for s in ['0.7', '2.5', '9.32', '7e-1']:
f = fractions.Fraction(s)
print('{0:>4} = {1}'.format(s, f))