Files

6 lines
82 B
Python
Raw Permalink Normal View History

2017-04-18 10:28:21 +08:00
# round
print(round(1.2))
print(round(1.6))
# abs
print(abs(1.5))
print(abs(-3.4))