码迷,mamicode.com
首页 > 编程语言 > 详细

Python day02心得

时间:2017-11-07 14:27:41      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:content   usr   操作   计算机   span   div   元组   方法   keyword   

运算符优先级

技术分享

元组、字典、列表

元组:只能创建和查,不能修改(方法:count 、 index)

 列表: 增、删、改、查、索引、切片(方法:append、insert、pop、del、index、len)

 列表扩展:

>>> names
[‘Alex‘, ‘Tenglan‘, ‘Rain‘, ‘Tom‘, ‘Amy‘]
>>> b = [1,2,3]
>>> names.extend(b)
>>> names
[‘Alex‘, ‘Tenglan‘, ‘Rain‘, ‘Tom‘, ‘Amy‘, 1, 2, 3]

字典(无序):增、删、改、查、索引(方法:get、clear、popitem)

#setdefault(字典中有就不变,没有就添加)
>>> info.setdefault("stu1106","Alex")   
‘Alex‘
>>> info
{‘stu1102‘: ‘LongZe Luola‘, ‘stu1103‘: ‘XiaoZe‘, ‘stu1106‘: ‘Alex‘}

#update 
>>> info
{‘stu1102‘: ‘LongZe Luola‘, ‘stu1103‘: ‘XiaoZe‘, ‘stu1106‘: ‘Alex‘}
>>> b = {1:2,3:4, "stu1102":"bala"}
>>> info.update(b)
>>> info
{‘stu1102‘: ‘bala‘, 1: 2, 3: 4, ‘stu1103‘: ‘XiaoZe‘, ‘stu1106‘: ‘Alex‘}

#通过一个列表生成默认dict,有个没办法解释的坑,少用吧这个
>>> dict.fromkeys([1,2,3],‘testd‘)
{1: ‘testd‘, 2: ‘testd‘, 3: ‘testd‘}

补充

enumerate用法:

for index,item in enumerate(proc_name):

  index ----> 下标

  item ------> 元素

 

 

Python day02心得

标签:content   usr   操作   计算机   span   div   元组   方法   keyword   

原文地址:http://www.cnblogs.com/sshcy/p/7780502.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!