- 숙제 1. 1. project_01.py를 만들고, 주어진 데이터를 반복문으로 모두 출력하는 station_list 함수를 작성하세요 데이터 : my_station=['야탑','모란','이매','선릉','한티','왕십리'] 2. proejct_01.py에 주어진 데이터를 반복문과 조건문을 사용하여 '선릉'만 출력 하는 station_point 함수를 작성하세요 - 숙제 1. 결과 my_station = ['야탑', '모란', '이매', '선릉', '한티', '왕십리'] def station_list(station_var): for station in station_var: print(station) # 함수명 호출하면서 station_var 라는 매개변수 안에 리스트들어가게됨. my_station =..