파이썬 실습1 (Python)파이썬 프로젝트/실습/리스트,if문을 사용한 실습 - 도서 정보 관리 프로그램 도서 정보 관리 프로그램 //a=[] 로 해도됨. //오류발생시 고치기 편하기 위해 리스트를 몇개 넣었음 a=[['엘리스','15000','heon'],['eunhee','30000','John']] //메뉴 while True: print("\n--------------\n") print('1.도서 정보 입력 \n2.도서 정보 출력 \n3.검색 \n4.삭제 \n5.종료') print("\n--------------\n") menu=int(input("메뉴 선택>>>")) //int형이 아닐 시 오류나면서 종료. //1을 눌렀을때:도서 정보 입력 if menu==1: bookname=input('도서 이름:') price=input('도서 가격:') while True: if price.isdigit().. 2021. 2. 26. 이전 1 다음