Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python - 사전 값으로 목록 지우기

<시간/>

이 기사에서는 값이 목록으로 표시되는 사전을 고려합니다. 그런 다음 목록에서 해당 값을 지우는 것을 고려합니다. 여기에는 두 가지 접근 방식이 있습니다. 하나는 clear 방법을 사용하는 것이고 다른 하나는 list comprehension을 사용하여 각 키에 빈 값을 지정하는 것입니다.

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': []}