您好,登錄后才能下訂單哦!
本篇內容主要講解“python中for循環和list的用法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“python中for循環和list的用法”吧!
list = [1, 2, 3, 4, 5,]
修改值:
list[2] = 500
print(list)
[1, 2, 500, 4, 5]
根據索引取值:
for index in range(len(list)):
print(list[index])
1
2
500
4
5
直接取值:
for item in list:
print(item)
1
2
500
4
5
索引、值同時獲取:
for index, item in enumerate(list):
print(index, item)
0 1
1 2
2 500
3 4
4 5
追加
list.append(7)
print(list)
[1, 2, 500, 4, 5, 7]
添加到指定位置
list.insert(1, 9)
print(list)
[1, 9, 2, 500, 4, 5, 7]
list合并
list.extend([222, 333])
print(list)
[1, 9, 2, 500, 4, 5, 7, 222, 333]
list刪除
if 2 in list: list.remove(2)
print(list)
[1, 9, 500, 4, 5, 7, 222, 333]
pop操作
list.pop()
333 #移除的值
print(list)
[1, 9, 500, 4, 5, 7, 222]
指定索引移除
list.pop(0)
1 #移除的值
print
print(list)
[9, 500, 4, 5, 7, 222]
清空列表
list.clear()
print(list)
[]
到此,相信大家對“python中for循環和list的用法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。