Python-リスト(list)の詳細とコード


リストの詳細とコード
本住所: http://blog.csdn.net/caroline_wendy/article/details/17290001
リスト(list)は、プロジェクトを格納するデータ構造であり、多くの項目を含み、カッコ([])を使用して格納されます.
リスト長、len()関数;
リストの末尾にappend()関数を追加します.
リストソート、sort()関数;
下付きインデックスを使用して、値を取得または変更します.
delメソッドを使用して、要素を削除します.
その他の方法はPythonマニュアルを参照してください.
コードは次のとおりです.
# -*- coding: utf-8 -*-

#====================
#File: abop.py
#Author: Wendy
#Date: 2013-12-03
#====================

#eclipse pydev, python3.3

shoplist = ['apple', 'mango', 'carrot', 'banana']
print('I have', len(shoplist), 'items to purchase') #      
print('These items are:', end=' ') #end      ,       ' '
for item in shoplist:
    print(item, end=' ')

print('
I also have to buy rice.') shoplist.append('rice') print('My shopping list is now', shoplist) # [] print('I will sort my list now') shoplist.sort() # print('Sorted shopping list is', shoplist) print('The first item I will buy is', shoplist[0]) olditem = shoplist[0] del shoplist[0] # print('I bought the', olditem) print('My shopping list is now', shoplist) #

出力:
I have 4 items to purchase
These items are:
apple mango carrot banana 
I also have to buy rice.
My shopping list is now ['apple', 'mango', 'carrot', 'banana', 'rice']
I will sort my list now
Sorted shopping list is ['apple', 'banana', 'carrot', 'mango', 'rice']
The first item I will buy is apple
I bought the apple
My shopping list is now ['banana', 'carrot', 'mango', 'rice']