Python ลบรายการรายการ
ลบรายการสินค้า
มีหลายวิธีในการลบรายการออกจากรายการ:
ตัวอย่าง
วิธี การremove()
ลบรายการที่ระบุ:
thislist = ["apple", "banana", "cherry"]
thislist.remove("banana")
print(thislist)
ตัวอย่าง
วิธี การpop()
ลบดัชนีที่ระบุ (หรือรายการสุดท้ายหากไม่ได้ระบุดัชนี):
thislist = ["apple", "banana", "cherry"]
thislist.pop()
print(thislist)
ตัวอย่าง
del
คีย์เวิร์ดลบดัชนีที่ระบุ:
thislist = ["apple", "banana", "cherry"]
del
thislist[0]
print(thislist)
ตัวอย่าง
คำdel
หลักยังสามารถลบรายการทั้งหมดได้:
thislist = ["apple", "banana", "cherry"]
del
thislist
ตัวอย่าง
วิธี การclear()
ล้างรายการ:
thislist = ["apple", "banana", "cherry"]
thislist.clear()
print(thislist)