Source Code:
(back to article)
dezimal_zahl = 3.14159265 gerundete_zahl = round(dezimal_zahl, 2) print(gerundete_zahl) # 3.14
Result:
Report an issue