python入門記錄

2021-08-16 20:07:28 字數 1857 閱讀 5391

mix=[1,'a','string',3.14,[1,2,3]]

empty=

member=['金魚','鯉魚','黃魚']

len(member) #結果是3

member.extend(['帶魚','娃娃魚']) #extend()能以這樣的形式加入兩個引數

member.insert(1,'鯽魚')

remove()

member.remove('帶魚')
如果move()中帶的引數不存在列表中,會報錯

del()

del

member

[1]

pop()

python的列表是基於堆疊實現的

member.pop()
pop()可以加索引值

member.pop(1)
member

[1:3]

member

[:2]

member

[1:]

member

[:] #獲取列表的拷貝

>>> list1 = [123]

>>> list2 = [234]

>>> list1 > list2

false

>>> list3 = [123,456]

>>> list4 = [234,123]

>>> list3>list4

false

>>> list5 =list3+list4

>>> list5

[123, 456, 234, 123]

>>> list3*3

[123, 456, 123, 456, 123, 456]

>>> list6=[123,[234,456],789]

>>> list6[1][0]

234>>>

123in list6

true

>>> list3.count(123)

1>>> list5.count(123)

2>>> dir(list)

>>> list3.index(123)

0>>> list5.reverse()

>>> list5

[123, 234, 456, 123]

>>> list5.sort()

>>> list5

[123, 123, 234, 456]

>>> list5.sort(reverse=true)

>>> list5

[456, 234, 123, 123]

>>> list6=[123,234,456]

>>> list6.sort()

>>> list6

[123, 234, 456]

>>> list7=list6[:]

>>> list8=list6

>>> list6.sort()

>>> list6

[123, 234, 456]

>>> list7

[123, 234, 456]

>>> list8

[123, 234, 456]

>>> list6.sort(reverse=true)

>>> list7

[123, 234, 456]

>>> list6

[456, 234, 123]

>>> list8

[456, 234, 123]

>>>

python入門記錄 Python 入門學習記錄

基礎語法 縮排縮排表達 內容的所屬關係的唯一方式,中縮排的長度必須保持統一。注釋python 使用 作為單行注釋標識,作為多行注釋標識。如 這是單行注釋 這是多行注釋 命令 保留字 命名規則 大小寫字元 數字 下劃線和漢字等字元及組合。大小寫敏感,首字元不能為數字,不能與保留字相同。保留字 被程式語...

python入門記錄 python入門基礎習題記錄

執行python指令碼的兩種方式 1 配置好環境變數,python py 2 python進入python直譯器,直接執行 簡述位 位元組關係 1 1位元組 byte 8位 bit 簡述ascii,unicode,utf 8,gbk關係 1 ascii 最早的一種編碼方式,用乙個位元組也就是8位來表...

Python入門記錄3

python 模組 python 檔案,包含 python 物件定義和 python 語句 import 關鍵字引入模組 當前搜尋路徑 shell 變數pythonpath 預設路徑 fromtimeimporttimezone 只引入模組中的乙個屬性或方法 fromtimeimport 引入全部模...