Similar Posts

Subscribe
Notify of
3 Answers
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Pinguingottin
1 year ago
zahl = 3.14159
gerundete_zahl = round(zahl, 2)
print(gerundete_zahl)
Output 3.14

Is an old bsp, but should still work.

SusgUY446
1 year ago
x = 6.392
x = round(x, 2)

Or simpler

x = round(6.392, 2)
EragonSaphira17
1 year ago

In Python there is the built-in function round().

zahl = 7.246
gerundete_zahl = round(zahl, 2)
print(gerundete_zahl)