Python基础--数据类型
程序员文章站
2022-03-25 08:05:36
Numbers数字 String字符串 Bool布尔型 List列表 Tuple元祖 Dict字典 运行结果: {'name': 'fatbird', 'city': 'shanghai', 'tel': 10001000} shanghai 数据类型转换方法(int, ......
numbers数字
string字符串
bool布尔型
list列表
# list列表,支持字符,数字,字符串以包含列表(即嵌套),用[]标识,有序对象 x5 = [1,'a',2.4,502.2,[1,2,3]] print(x5,type(x5)) print(x5[4],type(x5[4]))
tuple元祖
# tuple元祖,用()标识,不能二次赋值,可以理解成不可变的列表(只读列表),有序对象 x6 = (1,2,3,'hello') print(x6,type(x6))
dict字典
# dict字典,用{}标识,由索引(key)和它对应的值value组成,无序对象 x7 = {"name":"fatbird", "city":"shanghai", "tel":10001000} print(x7,type(x7)) print(x7['city'])
运行结果:
{'name': 'fatbird', 'city': 'shanghai', 'tel': 10001000} <class 'dict'>
shanghai