Python-内置数据类型

本文介绍了Python的几种基本内置数据类型,包括字符串、布尔型、整数、浮点数、元组、列表和字典。对于每种类型,都提供了示例代码及其输出,帮助理解不同类型的特点和用法。
摘要由CSDN通过智能技术生成

1、字符串[string] 
1)str=’this is string’ 
print str 
print type(str) 
2)str='''想怎么些就怎么些 
怎么的 
'''
print str 
print type(str) 
注意:单引号、双引号均可,使用三个引号,其内容可以自由书写 
2、布尔类型[bool] 
bool=False 
print bool 
bool=True 
print bool 
3、整数[int] 
int=100 
print int 
print type(int) 
4、浮点数[float] 
flo=3.1415926 
print type(flo) 
5、元组[tuple] 
tup=(1,2,3) 
print tup 
print type(tup)

6、列表[list] 
l=[1,2,3,4,5] 
print l 
print type(l)

7、字典[dict] 
d={1:’a’,2:’b’,3:’c’} 
print type(d)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值