6 lines
82 B
Python
6 lines
82 B
Python
# round
|
|
print(round(1.2))
|
|
print(round(1.6))
|
|
# abs
|
|
print(abs(1.5))
|
|
print(abs(-3.4)) |