20230419 TIL | keyowod 'in' in dictionary in python

Choog Yul Lee·2023년 4월 18일
0

2023_TIL

목록 보기
6/6
post-thumbnail

📆 Date

  • 19th April 2023

🔑 Problem

m = {0:0, 1:1}

def func(n):
	if n in m:
    	# to do something

이런 표현식이 보인다. 무슨 뜻이지?

🛰️ Reference Site

🎽 Learn

We can test if a key is in a dictionary or not using the keyword in. Notice that the membership test is only for the keys and not for the values.

'in' keyword

Dictionarykey가 있는지 없는지 알기 위해서 in 키워드를 사용한다. value가 아니라 key를 검사하는데 사용하는 것을 주의해야 한다.

m = {0:0, 1:1}

def func(n):
    if n in m:
        print('The key, ' + str(n) + ', is in m')
    else:
        print('The key, ' + str(n) + ', is not in m')

func(1)
func(10)

output

The key, 1, is in m
The key, 10, is not in m

0개의 댓글