int 整型
print('int') # 浮点型(小数)
# 整形(int)是没有小数点的数值型(number)
print(1, type(1))
float 浮点型(小数)
print('float') # 浮点型(小数)
# 浮点型(float)是带有小数点的数值型(number)
print(1.22, type(1.22))
bool 布尔型
print('bool') # 布尔型
# 布尔型(bool)只有True(1)跟False(2),也是数值型(number)
print(True, False, type(True))
print(int(True), int(False))
print(1 == True, False == 0)
str 字符串
print('str') # 字符串
# 字符串(str)带有引号的字符,数值型带有引号也是字符
print("1.22", type("1.22"))
print("字符串", type("字符串"))
time 时间
print('time') # 时间
# 时间(time)小时-分钟-秒钟格式
t = time.strftime("%H:%M:%S", time.localtime())
print(t, type(t))
datetime 日期时间
print('datetime') # 日期时间
# 日期时间(datetime)年-月-日-时-分-秒格式
t2 = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print(t2, type(t2))
list 列表
print('list') # 列表
# 列表(list)python中最常见的序列,以中括号定义
li = ['jack', 'mark', 'jack']
print(li, type(li))
tuple 元组
print('tuple') # 元组
# 元组(tuple),以小括号定义
tup = ('jack', 'mark', 'jack')
print(tup, type(tup))
set 集合
print('set') # 集合
# 集合(set),以大括号定义
st = {'jack', 'mark', 'jack'}
print(st, type(st))
dict 字典
print('dict') # 字典
# 字典(dict),以大括号定义,键值对以冒号分隔
dct = {'name':'jack','age':19}
print(dct, type(dct))
打卡第26天,对python大数据感兴趣的朋友欢迎一起讨论、交流,请多指教!