python의 학습노트/002-5.1(2018-5-21)
3010 단어 자전dic응용 프로그램파이썬 기초 지식 이해
_3_food_list={
' ':{
' ':{
' ':[" "," "," "],
' ':[" "," "," "]
},
' ':{' ':[" "," "," "],
' ':[" "," "," "],
' ':[" "," "," "]
}
},
' ':{
' ':{
' ':[" "," "," "],
' ':[" "," "," "]
},
' ':{
' ':[" "," "],
' ':[" "," "," "]
}
},
' ':{
' ':{
' ':[" "," "],
' ':[" "," "]
},
' ':{
' ':[" "," "],
' ':[" "," "]
}
}
}
exit_flag=False
while not exit_flag :
for i in _3_food_list:
print(i)
choice1=input(">>>please input 1:")
while not exit_flag:
if choice1 in _3_food_list:
for i in _3_food_list[choice1]:
print(i)
choice2=input("\t>>>please input 2:")
if choice2 in _3_food_list[choice1]:
for i in _3_food_list[choice1][choice2]:
print(i)
choice3=input("\t\t>>>please input 3 :")
while not exit_flag:
if choice3 in _3_food_list[choice1][choice2]:
for i in _3_food_list[choice1][choice2][choice3]:
print(i)
choice4=input("\t\t\t>>>please iput 4 :")
if choice4 in _3_food_list[choice1][choice2][choice3]:
print(choice4 )
choice5=input(">>>the last back(b):")
if choice5=='b':
pass
elif choice5=='q':
exit_flag =True
if choice4=='b':
break
elif choice4=='q':
exit_flag =True
if choice3 == 'b':
break
elif choice3== 'q':
exit_flag = True
if choice2 == 'b':
break
elif choice2 == 'q':
exit_flag = True
if choice1 == 'b':
break
elif choice1 == 'q':
exit_flag = True
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
.NETC#에서 데이터베이스 웹 서비스 - SAP 버전 API 사용 시도나는 도구를 만들기 위해 국어사전을 검색하는 방법을 찾고 있다. 개발 환경.NET C#(Visual Studio 2017)을 원합니다. 나는 웹 관계를 개발한 적이 없기 때문에 먼저 샘플 코드가 있는지 없는지를 검색...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.