bytes
bool
input()
print()
==
is
身份运算符is和is not用来比较两个变量引用的是否是同一个对象:
is not
x is y
x is not y
==用来比较两个值是否相等; is用来比较两个变量引用的是否是同一个对象.