Python - 딕셔너리에 key가 있는지 확인

파이썬에서 어떤 key가 dict에 있는지 확인하는 방법을 소개합니다.

1. 딕셔너리에 key가 존재하는지 확인: for key in dict

아래 코드로 특정 key가 딕셔너리에 존재하는지 확인할 수 있습니다.

my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

if 'a' in my_dict:
    print("It have the key a")

Output:

It have the key a

2. 딕셔너리에 key가 없는지 확인: for key not in dict

아래 코드로 특정 key가 딕셔너리에 없는지 확인할 수 있습니다.

my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

if 'e' not in my_dict:
    print("It doesn't have the key e")

Output:

It doesn't have the key e

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha