중화사전망 - 중국어 사전 - 파이썬 사전에서 콜론 뒤의 단어를 출력하는 방법
파이썬 사전에서 콜론 뒤의 단어를 출력하는 방법
#Python 사전은 콜론 뒤에 dict.values()를 출력합니다.
listname=["Zhang San", "Zhao Liu", "Wang Er", "Ma Han"]# 이름
listscore=[(100,98,97),(89,98,96),(90,95,89),(89,93,90)]#1인당 3과목 / p>
dictxs=dict(zip(listname,listscore))#Dictionary{name:score}
print(dictxs)
for v in dictxs.values(): #출력 결과
print(v)#이 코드 줄은 4칸 들여쓰기되어 있습니다