유임 승차 비율이 가장 높은 역 찾기
import csv f = open('subwayfee.csv') data = csv.reader(f) next(data) mx = 0 rate = 0 mx_station = '' for row in data : for i in range(4,8) : row[i] = int(row[i]) if row[6] != 0 and (row[4]+row[6]) > 100000 : rate = row[4] / (row[4]+row[6]) if rate > mx : mx = rate mx_station = row[3] + ' ' + row[1] print(mx_station, round(mx*100,2))
실행 결과
홍대입구 2호선 95.34
2019년 1월을 기준으로 유임 승차 비율이 가장 높은 곳은 ‘홍대입구역’이라는 사실을 알 수 있네요!