Python 배우기 #9 - 예 사전🐍
2230 단어 programmingwebwebdevpython
Not a dictionary of words
사전이란?💡
Python에서 사전은 키-값 쌍의 목록입니다.
예를 들어 보겠습니다.
사전 만들기💡
dictionary_1 = {
'name': 'Nitin',
'age': 34,
'country': 'India'
}
위의 예에서
name
, age
및 country
는 해당 값이 Nitin
, 34 및 India
인 키입니다.또한 중첩된 사전을 만들 수 있습니다.
dictionary_1 = {
'name': 'Nitin',
'age': 34,
'address': {
'street': 'Keshav'
'country': 'India'
}
}
이해하기 쉽나요?💡
사전에는
number
, string
, boolean
등과 같은 다양한 유형의 값을 가질 수 있습니다. This would look similar to an object in JavaScript
키 값에 액세스하기💡
dictionary_1 = {
'name': 'Nitin',
'age': 34,
'country': 'India'
}
dictionary_1['name']
// Nitin
dictionary_2 = {
'name': 'Nitin',
'age': 34,
'address': {
'street': 'Keshav'
'country': 'India'
}
}
dictionary_2['address']['street']
// Keshav
사전의 값에 액세스하려면
key
를 대괄호[]
로 묶어야 합니다.결론 📗
튜플과 관련된 더 많은 게시물이 있습니다... 그러니 계속 읽으세요.
이 글을 읽어주셔서 미리 감사드립니다...🚀
나는 당신과 연결하게되어 기쁩니다
당신은 또한 나를 찾을 수 있습니다
Reference
이 문제에 관하여(Python 배우기 #9 - 예 사전🐍), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nitinreddy3/learn-python-9-yeah-dictionary-4lac텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)