0
Python Lesson -> Numeric Functions Round Example missing
My suggestion: Numeric Functions print(min(1, 2, 3, 4, 0, 2, 1)) print(max([1, 4, 9, 2, 5, 6, 8])) print(abs(-99)) >>print(abs(42)) <<print(round(42.56)) print(sum([1, 2, 3, 4, 5]))
1 Answer
+ 1
yes its right.. but the existing example doesn't give the round function. so thats my proposal to replace:
this line:
print(abs(42))
by:
print(round(42.56))