데이터 빠르게 탐색하기

임혜림·2022년 11월 28일
0

데이터 분석에 이용하기
사용자 번호: 작품 번호로 이루어진 netflix.txt을 읽고, 사용자 번호를 키로, 작품 번호를 값으로 하는 딕셔너리를 생성하는 make_dictionary() 함수를 완성하세요.

# 텍스트 파일을 불러옵니다.
source_file = "netflix.txt"

def make_dictionary(filename):
    user_to_titles = {}
    with open(filename) as file:
        for line in file:
            # 아래 코드를 작성하세요.
            user, title = line.strip().split(":")
            user_to_titles[user] = title
            
        return user_to_titles


# 아래 주석을 해제하고 결과를 확인해보세요.  
#print(make_dictionary(source_file))

0개의 댓글