Files
2017-04-18 10:28:21 +08:00

6 lines
82 B
Python

# round
print(round(1.2))
print(round(1.6))
# abs
print(abs(1.5))
print(abs(-3.4))