source

사전에 특정 키가 포함되어 있는지 테스트하는 방법

gigabyte 2022. 9. 18. 10:12
반응형

사전에 특정 키가 포함되어 있는지 테스트하는 방법

사전에 키가 포함되어 있는지 테스트할 수 있는 가장 깨끗한 방법은 무엇입니까?

x = {'a' : 1, 'b' : 2}
if (x.contains_key('a')):
    ....
'a' in x

빠른 검색을 통해 http://docs.python.org/3/tutorial/datastructures.html#dictionaries에 대한 유용한 정보가 나타납니다.

언급URL : https://stackoverflow.com/questions/5312778/how-to-test-if-a-dictionary-contains-a-specific-key

반응형