常用内置类型 Built-in Types

在本节中,我们将要见到这些基本类型:

print(type(2))         # int
print(type(2.2))       # float
print(type(2<2.2))     # bool (boolean)
print(type(type(2)))   # type

在今后的内容中,我们将会见到更多类型:

strlisttuplesetdict 将会用 **数组** Array 的方式讲授