How to limit the denominator length when convert from float to fraction in Python

1 Answer

0 votes
from fractions import Fraction as frac
import math
 
print('sqrt: ' + str(math.sqrt(frac(47, 35))))
print('frac sqrt: ' + str(frac(math.sqrt(frac(47, 35)))))
print('frac sqrt: ' + str(frac(math.sqrt(frac(47, 35))).limit_denominator(1000))) 
print('frac sqrt: ' + str(frac(math.sqrt(frac(47, 35))).limit_denominator(100))) 
 
 
'''
run:
 
sqrt: 1.1588171308956141
frac sqrt: 5218848398892035/4503599627370496
frac sqrt: 1058/913
frac sqrt: 73/63
 
'''

 



answered Jun 10, 2019 by avibootz
edited Jun 10, 2019 by avibootz

Related questions

2 answers 206 views
206 views asked Apr 11, 2019 by avibootz
3 answers 286 views
1 answer 181 views
1 answer 144 views
...