整除(双斜线):
>>> 1//2
0
幂运算(双星号):
>>> 2**100
1267650600228229401496703205376
>>> -3**2
-9
>>> (-3)**2
9
函数:
向下取整:
>>> import math
>>> math.floor(32.9)
32
>>> int(32.9)
32
向上取整:
>>> round(32.9)
33
长字符串:
>>> print('''fdsff1
22342''')
fdsff1
22342
>>> print('fsdff\
dsfffsfsf2')
fsdffdsfffsfsf2