Write a program that prints the value of 120.456789 rounded to the nearest digit, tenth, hundredth, thousandth, and ten-thousandth. [Hint: This should make use of formatted output.].
1
Expert's answer
2022-03-20T06:21:00-0400
num = 120.456789
for i in range(5):
print(f'{num:0.{i}f}')
Comments
Leave a comment