0
Pls help me to understand round() statement in a simple code..... thanks
Help
4 Antworten
+ 3
Round() simply round the float to nearest integer.
round(8.9) -> 9
+ 2
Just an additional:
Rounding numbers in Python is different from most programming languages.
Take a look at this post.
https://www.sololearn.com/post/876419/?ref=app
+ 1
code for concept of David Delgado
print(round(8.9))