파이썬 300제 51~60 개인 기록용 https://wikidocs.net/7025 061 ~ 070 .answer {margin-top: 10px;margin-bottom: 50px;padding-top: 10px;border-top: 3px solid LightGray;bo… wikidocs.net 61. price = ['20180728',100,130,140,150,160,170]일 때 날짜 정보를 제외하고 가격 정보만 출력 답 : price = ['20180728',100,130,140,150,160,170] print(price[1:]) 62. nums = [1,2,3,4,5,6,7,8,9,10]일 때 슬라이싱을 사용하여 홀수만 출력 답 : nums = [1,2,3,4,5,6,7,8,9,10..