PYTHON: Write a program that first reads in the name of an input file and then reads the input file using the file.readlines() method. The input file contains an unsorted list of number of seasons followed by the corresponding TV show. Your program should put the contents of the input file into a dictionary where the number of seasons are the keys, and a list of TV shows are the values (since multiple shows could have the same number of seasons). Sort the dictionary by key (least to greatest) and output the results to a file named output_keys.txt. Separate multiple TV shows associated with the same key with a semicolon (;), ordering by appearance in the input file. Next, sort the dictionary by values (alphabetical order), and output the results to a file named output_titles.txt. 20 Gunsmoke 30 The Simpsons 10 Will & Grace 14 Dallas 20 Law & Order 12 Murder, She Wrote the file output_keys.txt should contain: 10: Will & Grace 12: Murder, She Wrote 14: Dallas 20: Gunsmoke; Law & Order 30: The Simpsons and the file output_titles.txt should contain: Dallas Gunsmoke Law & Order Murder, She Wrote The Simpsons Will & Grace MY CODE: seasons_and_shows = input() file_input = open(seasons_and_shows, 'r') data = file_input.readlines() titles_and_seasons = {} list_of_titles = [] for i in range(0, len(data)): data[i] = data[i].strip() for i in range(0, len(data), 2): list_of_titles.append(data[i + 1]) if data[i] in titles_and_seasons: titles_and_seasons[data[i]] = titles_and_seasons[data[i]] + '; ' + data[i + 1] else: titles_and_seasons[data[i]] = data[i + 1] with open('output_keys.txt', 'w') as output_keys: for item in sorted(titles_and_seasons.items()): output_keys.write(str(item[0]) + ': ' + item[1] + '\n') with open('output_titles.txt', 'w') as output_titles: list_of_titles.sort() for each in list_of_titles: output_titles.write(each + '\n') I am getting no output and need to define a function that sorts by the values in the dictionary instead of the keys since the keys are not unique.
PYTHON:
Write a program that first reads in the name of an input file and then reads the input file using the file.readlines() method. The input file contains an unsorted list of number of seasons followed by the corresponding TV show. Your program should put the contents of the input file into a dictionary where the number of seasons are the keys, and a list of TV shows are the values (since multiple shows could have the same number of seasons).
Sort the dictionary by key (least to greatest) and output the results to a file named output_keys.txt. Separate multiple TV shows associated with the same key with a semicolon (;), ordering by appearance in the input file. Next, sort the dictionary by values (alphabetical order), and output the results to a file named output_titles.txt.
20 Gunsmoke 30 The Simpsons 10 Will & Grace 14 Dallas 20 Law & Order 12 Murder, She Wrote
the file output_keys.txt should contain:
10: Will & Grace 12: Murder, She Wrote 14: Dallas 20: Gunsmoke; Law & Order 30: The Simpsons
and the file output_titles.txt should contain:
Dallas Gunsmoke Law & Order Murder, She Wrote The Simpsons Will & Grace
MY CODE:
seasons_and_shows = input()
file_input = open(seasons_and_shows, 'r')
data = file_input.readlines()
titles_and_seasons = {}
list_of_titles = []
for i in range(0, len(data)):
data[i] = data[i].strip()
for i in range(0, len(data), 2):
list_of_titles.append(data[i + 1])
if data[i] in titles_and_seasons:
titles_and_seasons[data[i]] = titles_and_seasons[data[i]] + '; ' + data[i + 1]
else:
titles_and_seasons[data[i]] = data[i + 1]
with open('output_keys.txt', 'w') as output_keys:
for item in sorted(titles_and_seasons.items()):
output_keys.write(str(item[0]) + ': ' + item[1] + '\n')
with open('output_titles.txt', 'w') as output_titles:
list_of_titles.sort()
for each in list_of_titles:
output_titles.write(each + '\n')
I am getting no output and need to define a function that sorts by the values in the dictionary instead of the keys since the keys are not unique.
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 5 images