一. 判断数据类型 #字符串(str),整数(int),符点数(float),布尔值(bool),True(真),False(假) res = type(123) print(res) res = type(“123”) print(res) 二。实例化对象
举例: 三,init方法