1、数字
普通除法
print(7/3)
2.3333333333333335
地板除
print(7//3)
2
取余
print(7%3)
1
乘法
print(7*3)
21
乘方
print(3**3)
27
四则运算
print((3*2)+5-(5*3))
-4
2 、字符串
单引号和双引号作用一样
print(‘hello’)
print(“hello”)
print("‘hello’")
hello
hello
‘hello’
将转义符原样输出
print(r"hello\nworld")
hello\nworld
print(“hello\nworld”)
hello
world
3、列表