How to parse float value to fraction in Python

3 Answers

0 votes
import fractions

for s in ['0.5', '1.5', '2.0', '3.14', '4e-1']:          
    fr = fractions.Fraction(s)          
    print('{} = {}'.format(s, fr))



'''
run:

0.5 = 1/2
1.5 = 3/2
2.0 = 2
3.14 = 157/50
4e-1 = 2/5

'''

 



answered Jun 9, 2019 by avibootz
edited Jun 10, 2019 by avibootz
0 votes
import fractions

for s in [0.5, 1.5, 2.0, 3.14, 4e-1]:          
    print('{} = {}'.format(s, fractions.Fraction(s)))



'''
run:

0.5 = 1/2
1.5 = 3/2
2.0 = 2
3.14 = 7070651414971679/2251799813685248
0.4 = 3602879701896397/9007199254740992

'''

 



answered Jun 10, 2019 by avibootz
0 votes
import fractions

for s in ['0.5', '1.5', '2.0', '3.14', '4e-1']:          
    print('{} = {}'.format(s, fractions.Fraction(s)))



'''
run:

0.5 = 1/2
1.5 = 3/2
2.0 = 2
3.14 = 157/50
4e-1 = 2/5

'''

 



answered Jun 10, 2019 by avibootz

Related questions

2 answers 205 views
205 views asked Apr 11, 2019 by avibootz
1 answer 187 views
2 answers 208 views
...