博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python List(列表)使用示例
阅读量:5160 次
发布时间:2019-06-13

本文共 624 字,大约阅读时间需要 2 分钟。

shoplist = ['apple', 'mango', 'carrot', 'banana'] #定义一个列表print 'I have', len(shoplist),'items to purchase' #计算列表长度print 'These items are:',  #遍历列表for item in shoplist:    print item,    print '\nI also to buy rice'shoplist.append('rice') #列表当中添加itemprint 'My shopping list is now',shoplistprint 'I will sort my list now'shoplist.sort() #列表进行排序print 'Sorted shopping list is ',shoplistprint 'The first item I will buy is',shoplist[0]  #访问单个列表元素olditem = shoplist[0]del shoplist[0] #删除列表元素print 'I bought the',olditemprint 'My shopping list is now',shoplist

 

转载于:https://www.cnblogs.com/hnrainll/archive/2013/05/15/3079168.html

你可能感兴趣的文章
C语言基础小结(一)
查看>>
STL中的优先级队列priority_queue
查看>>
UE4 使用UGM制作血条
查看>>
浏览器对属性兼容性支持力度查询网址
查看>>
OO学习总结与体会
查看>>
虚拟机长时间不关造成的问题
查看>>
校门外的树2 contest 树状数组练习 T4
查看>>
面试整理:Python基础
查看>>
Python核心编程——多线程threading和队列
查看>>
Program exited with code **** 相关解释
查看>>
植物大战僵尸中文年度版
查看>>
26、linux 几个C函数,nanosleep,lstat,unlink
查看>>
投标项目的脚本练习2
查看>>
201521123107 《Java程序设计》第9周学习总结
查看>>
Caroline--chochukmo
查看>>
iOS之文本属性Attributes的使用
查看>>
从.Net版本演变看String和StringBuilder性能之争
查看>>
Excel操作 Microsoft.Office.Interop.Excel.dll的使用
查看>>
解决Ubuntu下博通网卡驱动问题
查看>>
【bzoj2788】Festival
查看>>