python筆記(2)

來源:互聯網
上載者:User

繼續List:

刪除元素: 複製代碼 代碼如下:a =[1, 2, 3, 4]
a[2:3] = [] #[1, 2, 4]
del a[2] #[1, 2]

清空list 複製代碼 代碼如下:a[ : ] = []
del a[:]

list作為棧使用(後入先出): 複製代碼 代碼如下:stack = [3, 4, 5]
stack.append(6)
stack.append(7)
stack.pop() # 7
stack.pop() # 6
stack.pop() # 5

用負數索引: 複製代碼 代碼如下:b=[1, 2, 3, 4]
b[-2] #3

"+"組合list: 複製代碼 代碼如下:end = ['st', 'nd'] + 5*['th'] + ['xy'] # ['st', 'nd', 'th', 'th', 'th', 'th', 'th', 'xy']

查出某元素在list中的數量: 複製代碼 代碼如下:lst.('hello') # hello 的數量

list排序: 複製代碼 代碼如下:sort()
#對鏈表中的元素進行適當的排序。

reverse()
#倒排鏈表中的元素

函數指標的問題: 複製代碼 代碼如下:def f2(a, L=[])
L.append(a)
return L

print(f2(1)) # 1
print(f2(2)) # 1, 2 L在這次函數調用時是[1]
print(f2(3)) # 1, 2, 3

函數中的參數中有:

  *參數名 :表示任意個數的參數

  **  :表示dictionary參數
控制語句:

 IF: 複製代碼 代碼如下:if x < 0:
x = 0
print 'Negative changed to zero'
elif x == 0:
print 'Zero'
elif x == 1:
print 'Single'
else:
print 'More'

FOR: 複製代碼 代碼如下:a = ['cat', 'window', 'defenestrate']
for x in a:
print x, len(x)  

WHILE: 複製代碼 代碼如下:a, b = 0, 1
while b < 1000:
print b,
a, b = b, a+b
#1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987

pass :空動作陳述式 複製代碼 代碼如下:while True:
pass

dictionary: 索引值對的資料結構

用list來構造dictionary: 複製代碼 代碼如下:items = [('name', 'dc'), ('age', 78)]
d = dict(items) #{'age': 78, 'name': 'dc'}

有趣的比較: 複製代碼 代碼如下:x = [] #list
x[2] = 'foo' #出錯
x = {} #dictionary
x[2] = 'foo' #正確

內容比較雜,學到什麼就記下來。完全利用工作中的空閑和業餘時間來完成,更加充實了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.