Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python - การล้างรายการเป็นค่าพจนานุกรม


ในบทความนี้ เราจะพิจารณาพจนานุกรมที่แสดงค่าเป็นรายการ จากนั้นเราจะพิจารณาล้างค่าเหล่านั้นออกจากรายการ เรามีสองแนวทางที่นี่ หนึ่งคือการใช้วิธีการที่ชัดเจนและอีกวิธีหนึ่งคือการกำหนดค่าว่างให้กับแต่ละคีย์โดยใช้ความเข้าใจรายการ

ตัวอย่าง

x1 = {"Apple" : [4,6,9,2],"Grape" : [7,8,2,1],"Orange" : [3,6,2,4]}
x2 = {"mango" : [4,6,9,2],"pineapple" : [7,8,2,1],"cherry" : [3,6,2,4]}
print("The given input is : " + str(x1))
# using loop + clear()
for k in x1:
   x1[k].clear()
print("Clearing list as dictionary value is : " + str(x1))
print("\nThe given input is : " + str(x2))
# using dictionary comprehension
x2 = {k : [] for k in x2}
print("Clearing list as dictionary value is : " + str(x2))

ผลลัพธ์

การเรียกใช้โค้ดข้างต้นทำให้เราได้ผลลัพธ์ดังต่อไปนี้ -

The given input is : {'Apple': [4, 6, 9, 2], 'Grape': [7, 8, 2, 1], 'Orange': [3, 6, 2, 4]}
Clearing list as dictionary value is : {'Apple': [], 'Grape': [], 'Orange': []}
The given input is : {'mango': [4, 6, 9, 2], 'pineapple': [7, 8, 2, 1], 'cherry': [3, 6, 2, 4]}
Clearing list as dictionary value is : {'mango': [], 'pineapple': [], 'cherry': []}