Python Math: Display the fraction instances of the string representation of a number
Write a Python program to display fraction instances of the string representation of a number.
Sample Solution:
Python Code:
import fractions
for s in ['0.7', '2.5', '9.32', '7e-1']:
f = fractions.Fraction(s)
print('{0:>4} = {1}'.format(s, f))
Sample Output:
0.7 = 7/10 2.5 = 5/2 9.32 = 233/25 7e-1 = 7/10
Flowchart:
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Python program to get the local and default precision.
Next: Write a Python program to create the fraction instances of float numbers.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics