'''新增元素
在末尾新增元素'''
students=['jack','bob','harry','micle'] #定義乙個陣列
print(students) #列印陣列students
#在指定位置新增元素
students.insert(0,'zds') # 0代表元素下標 'zds'為元素
print(students) #列印陣列
print(students[0]) #列印第乙個元素
#修改元素
students[0]='no.1' #把陣列第一位改為no.1
print(students)
#刪除元素
students.pop() #刪除最後乙個元素
print(students)
#刪除指定位置的元素
students.pop(1) #刪除第二個元素
print(students)
37 Python元素的新增,修改,刪除
目錄 給字典新增 鍵值對 使用update 將新字典中所有的鍵值對全部新增到舊字典物件上 字典中元素的刪除 popitem 隨機刪除和返回該鍵值對 字典元素的新增,修改,刪除 如果鍵已經存在,則覆蓋舊的鍵值對 如果 鍵 不存在,則新增 鍵值對 a a name 小紅 a a 女孩子 a 如果key有...
Python列表 元素的修改 新增 刪除和排序
操作 語法 舉例 結果 修改元素 motocycles honda yamaha suzuki print motocycles motocycles 0 ducati print motocycles honda yamaha suzuki ducati yamaha suzuki 新增元素 mo...
Python 修改 刪除和新增元素
假設你要邀請別人共進晚餐,建立乙個你想邀請的人的名單,並列印 guest elon jeff zurk gates jack print guests list print guest 某位嘉賓不可以來 cancle guest guest 3 print n cancle guest can t ...