파이썬 문법 기초 1주차 Quiz
# Quiz1 sparta에서 spa만 출력해보기Quiz1='sparta' result=Quiz1[:3] print(result) #Quiz2 전화번호의 지역번호 출력하기phone='02-123-1234' result=phone.split('-')[0] print(result) #Quiz3 smith의 science 점수를 출력해보세요people = [ {'name': 'bob', 'age': 20, 'score':{'math':90,'science':70}}, {'name': 'carry', 'age': 38, 'score':{'math':40,'science':72}}, {'name': 'smith', 'age': 28, 'score':{'math':80,'science':..