"파이썬 has key()"의 두 판 사이의 차이

(새 문서: ==개요== ;Python has_key() ;파이썬 has_key() <source lang='Python'> dict = {'first':1, 'second':4} print('first' in dict) # True print('third' in dict) # False </source> ==같...)
 
3번째 줄: 3번째 줄:
;파이썬 has_key()
;파이썬 has_key()


<source lang='Python'>
<source lang='Python' run>
dict = {'first':1, 'second':4}
dict = {'first':1, 'second':4}
print('first' in dict)
print('first' in dict) # True
# True
print('third' in dict) # False
print('third' in dict)
# False
</source>
</source>



2021년 8월 18일 (수) 13:22 판

1 개요

Python has_key()
파이썬 has_key()
dict = {'first':1, 'second':4}
print('first' in dict) # True
print('third' in dict) # False

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}