?
分享興趣,傳播快樂,增長見聞,留下美好!
親愛得您,這里是LearningYard學苑。今天小編為大家帶來“學習知多少(python篇):列表”,歡迎您得訪問。
Share interests, spread happiness, increase knowledge, and leave a good legacy!
Dear you, this is The LearningYard Academy. Today Xiaobian brings you "Learn how much to know (python):list”, welcome your visit.
一、定義
列表是最重要得python內置對象之一,是包含若干元素得有序連續內存空間。
I. Definitions
A list is one of the most important Python built-in objects, an ordered contiguous memory space containing several elements.
二、列表創建與刪除
使用“=”直接將一個列表賦值給變量
使用list()函數把元組、字符串、字典等轉換為列表
使用del命令將列表刪除
2. List creation and deletion
Use "=" to assign a list directly to a variable
Use the list() function to convert tuples, strings, dictionaries, etc. to lists
Use the del command to delete the list
三、列表常用方法
append(x)
將x追加至列表尾部
extend(L)
將列表L中得所有元素追加至列表尾部
insert(index,x)
在列表index處插入x,如果index為正數且大于列表長度則在尾部追加x,如果index為負數且小于列表長度得相反數則在列表頭部插入x。
remove(x)
在列表中刪除第壹個值為x得元素,如果不存在x則拋出異常
reverse()
對列表所有元素進行原地排序,首尾交換
3. Common methods of listing
append(x)
Append x to the end of the list
extend(L)
Appends all elements in list L to the end of the list
insert(index,x)
Insert x at the list index, append x to the trailing if index is positive and greater than the list length, and insert x at the end if index is negative and less than the opposite of the list length.
remove(x)
Remove the first element with a value x in the list and throw an exception if x does not exist
reverse()
Sort all elements of the list in place, ending and swapping
四、案例
4. Cases
今天得分享就到這里了。
如果您對今天得文章有獨特得想法,
歡迎給我們留言,
讓我們相約明天。
祝您今天過得開心快樂!
That's all for today's sharing.
If you have a unique idea for today’s article,
please leave us a message,
and let us meet tomorrow.
I wish you a happy day !
感謝由learningyard新學苑來自互聯網,如有感謝對創作者的支持,請聯系我們!
翻譯近日于谷歌翻譯
部分近日于
百度文庫
清華大學出版 董付國《Python程序設計基礎》
感謝&排版|百味
審核|閆慶紅