python数据类型

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大数据感兴趣的朋友欢迎一起讨论、交流,请多指教!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值