# Python中的变量不需要声明.每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建.# Python3中有六个标准的数据类型:Numbers(数字)String(字符串)List(列表)Tuple(元组)Sets(集合)Dictionaries(字典) # Numbers(数字)# Python 3支持int.float.bool.complex(复数a, b, c, d = 20, 5.5, True, 4+3jprint(type(a), type(b), type(c), typ