How to use sqrt with 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))) 
 
 
'''
run:
 
sqrt: 1.1588171308956141
frac sqrt: 5218848398892035/4503599627370496
frac sqrt: 1058/913
 
'''

 



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

Related questions

1 answer 163 views
1 answer 191 views
2 answers 248 views
1 answer 150 views
1 answer 205 views
...