91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中for循環和list的用法

發布時間:2021-06-25 09:22:07 來源:億速云 閱讀:2350 作者:chen 欄目:大數據

本篇內容主要講解“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的用法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

鄂托克旗| 百色市| 阿巴嘎旗| 英山县| 福州市| 宝清县| 图木舒克市| 靖宇县| 蓬溪县| 泸州市| 建昌县| 宾阳县| 蛟河市| 方城县| 古浪县| 孙吴县| 普兰店市| 蕲春县| 雷山县| 班玛县| 阜平县| 库伦旗| 阿巴嘎旗| 邵武市| 巴彦县| 临城县| 英吉沙县| 漾濞| 开远市| 南昌市| 广灵县| 德昌县| 蓬莱市| 玛沁县| 吕梁市| 满城县| 江西省| 安仁县| 永昌县| 英德市| 兴文县|