參考自
http://sebug.net/local/python/ch09s02.html
http://www.pythonclub.org/python-basic/list
http://effbot.org/zone/python-list.htm
http://man.chinaunix.net/develop/python/diveinto_python/odbchelper_list.html
獲得 LIST 的相關資訊
help(list)
aaa=12345
aList=[ ‘baby’,’tom’,’mary’,aaa]
求 LIST 內的個數
print len(aList)
加入新的元素(放在最後)
aList.append(‘Jackson’)
Print aList[5]
插入新的元素(放在指定位置)
aList.insert(2, "insert")
[ ‘baby’,’tom’,’insert’,’mary’,aaa]
插入相同的元素(放在指定位置)
aList.insert(-1, "insert2")
[ ‘baby’,’tom’,’insert’,’mary’, ‘insert2’,aaa]
LIST 內元素的排序
aList.sort()
讀出 List 內第一個元素
bbb=aList[0]
讀出 List 內最後之一個元素
bbb=aList[-1]
讀出列表內所有元素
for element in sample_list:
print(element)
搜索列表
Li=['a', 'b', 'new', 'mpilgrim', 'z', 'example', 'new', 'two', 'elements']
li.index("example"),得出5。
li.index("new"),得出2。
li.index("c"),沒有 c ,出錯誤訊息。
刪除 List 內第一個元素
del.aList[0]
aList.remove[3]
aList.remove[‘insert2’]
aList.pop() 剛除最後一個元素,並顯示於熒幕。
沒有留言:
張貼留言