Python Learn the basics Quiz 13
Q>1. 아래와 같은 인벤토리가 있다. 가격 개수 500 291 320 586 100 460 120 558 92 18 30 72 2. 위에 인벤토리에 총 합을 구하시오.3. 판매 금액은 가격에 90%만 받을수 있다. A>inven = {'item1':500, 'item2':320, 'item3':100, 'item4':120, 'item5':92, 'item6':30} inven_count = {'count1':291, 'count2':586, 'count3':460, 'count4':558, 'count5':18, 'count6':72} result_list1 = [] result_list2 = [] for v1 in inven.values(): a = result_list1.append(v1) for..
Python Learn the basics Quiz 11
Q>1. 리스트 [True, False, False, True, False] 가 있다.2. 위에 리스트 내용을 반전 시키는 프로그램을 작성하시오. A>check_list = [True, False, False, True, False] print(check_list) boolean_list = [] for i in check_list: if i == True: boolean_list.append(False) else: boolean_list.append(True) print(boolean_list) O>[True, False, False, True, False][False, True, True, False, True] Process finished with exit code 0
Python Learn the basics Quiz 9
Q>장바구니 내역을 딕셔너리에 원소로 갖는 리스트로 정의하고 합계금액을 출력하시오.장바구니 내역 : 38000원 6개 / 20000원 4개 / 17900원 3개 / 17900원 5개 A>cart = [{'price':38000, 'qty':6}, {'price':20000, 'qty':4}, {'price':17900, 'qty':3}, {'price':17900, 'qty':5}] price = '{0}원 x {1}개 -> 총 {2}원' print(price.format(cart[0]['price'], cart[0]['qty'], cart[0]['price'] * cart[0]['qty'])) print(price.format(cart[1]['price'], cart[1]['qty'], cart[1][..
Python Learn the basics Quiz 8
Q>어느 학생이 일주일간 공부한 시간을 기록한 표이다.일요일이 0이고 토요일이 6을 의미한다고 할 때이 학생이 공부한 시간을 튜플로 표현하여 출력하시오.일 : 7 / 월 : 5 / 화 : 5 / 수 : 5 / 목 : 5 / 금 : 10 / 토 : 7 A>study_day = (0, 1, 2, 3, 4, 5, 6) study_hour = (7, 5, 5, 5, 5, 10, 7) print(study_day[0], study_hour[0]) print(study_day[1], study_hour[1]) print(study_day[2], study_hour[2]) print(study_day[3], study_hour[3]) print(study_day[4], study_hour[4]) print(study..