蓝绝

博客园 首页 新随笔 联系 订阅 管理

2022年9月2日 #

摘要: '''元组的遍历''' t2=('Python','world',98) for item in t2: print(item) E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonPro 阅读全文
posted @ 2022-09-02 11:07 蓝绝 阅读(17) 评论(0) 推荐(0) 编辑

摘要: ''' 元组中对象本身是不可变对象。如果其中对象为可变对象,引用不可改变,但是数据可以改变''' t=(10,[20,30],9) print(id(t[2])) #改变前id t[1].append(20) print(t) print(id(t[2])) #改变后id,数据变了,但id没变 E: 阅读全文
posted @ 2022-09-02 11:01 蓝绝 阅读(23) 评论(0) 推荐(0) 编辑

摘要: '''第一种创建方式,使用()''' t=('Python','world',98) print(t) print(type(t)) '''第二种创建方式,使用内置函数tuple()''' t1=tuple(('Python','world',98)) #注意需要2个小括号 print(t1) pr 阅读全文
posted @ 2022-09-02 10:09 蓝绝 阅读(42) 评论(0) 推荐(0) 编辑

2022年8月31日 #

摘要: #注意判断是否是可变序列,主要是看地址是否发生改变 阅读全文
posted @ 2022-08-31 19:01 蓝绝 阅读(22) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-08-31 15:02 蓝绝 阅读(9) 评论(0) 推荐(0) 编辑

摘要: '''字典的生成式,zip()为打包函数''' items=['Fruits','Books','Others'] prices=[96,78,100] d={item.upper():price for item,price in zip(items,prices)}#upper()为大写字母函数 阅读全文
posted @ 2022-08-31 15:01 蓝绝 阅读(28) 评论(0) 推荐(0) 编辑

摘要: '''字典的值可以是相同的''' scores={'张三':100,'李四':100,'王五':100} print(scores['李四']) print(scores['张三']) '''字典的key不能是相同的''' scores1={'张三':101,'张三':102,'张三':103} p 阅读全文
posted @ 2022-08-31 14:39 蓝绝 阅读(29) 评论(0) 推荐(0) 编辑

摘要: '''字典的遍历''' scores={'张三':100,'李四':98,'王五':45} for item in scores: print(item,scores[item],scores.get(item)) #获取分别是键 和 值 E:\PycharmProjects\pythonProje 阅读全文
posted @ 2022-08-31 14:15 蓝绝 阅读(20) 评论(0) 推荐(0) 编辑

2022年8月30日 #

摘要: scores={'张三':100,'李四':98,'王五':45} '''获取所有的key''' print() #让结果隔行 keys=scores.keys() print(keys) print(type(keys)) print(list(keys)) #所有的key组成的视图转成列表 '' 阅读全文
posted @ 2022-08-30 16:14 蓝绝 阅读(25) 评论(0) 推荐(0) 编辑

摘要: '''key 的判断''' scores={'张三':100,'李四':98,'王五':45} print('张三' in scores) print('张三' not in scores) '''删除指定的key-value对''' del scores['张三'] print(scores) ' 阅读全文
posted @ 2022-08-30 14:52 蓝绝 阅读(23) 评论(0) 推荐(0) 编辑