摘要: 一、类型总结 1、数字 int(..) 2、字符串 replace/find/join/strip/startswith/split/upper/lower/formattempalte = "i am {name}, age : {age}"v = tempalte.format(name='al 阅读全文
posted @ 2019-12-25 10:53 IamJet 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 字典特征 1. 字典使用dict表示; 2. 字典基本结构; info = { "k1": "v1", # 键值对 "k2": "v2" } 3. 列表、字典不能作为字典的key; 4. value值可是任何值,并且可以无线嵌套; 5. 字典是无序的; 6. 从字典取值要通过索引key值去取值;(字 阅读全文
posted @ 2019-12-25 09:54 IamJet 阅读(497) 评论(0) 推荐(0) 编辑