-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavourite.py
38 lines (30 loc) · 931 Bytes
/
favourite.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# import csv
# i = 0
# # titles = set()
# title = {}
# with open("apple_stocks.csv","r") as file:
# reader = csv.DictReader(file)
# for row in reader:
# row = row["Date"].strip()
# if row not in title:
# title.update(row)
# else:
# title[title] += 1
# # the below code line is used to sort the number
# for titles in sorted(title):
# print(titles)
import csv
titles = {}
with open("top_movies.csv","r") as file:
reader = csv.DictReader(file)
for row in reader:
row = row["movie"].strip()
if row not in titles:
dictq = {f"{row}":0}
titles.update(dictq)
titles[row] += 1
def f(title):
return titles[title]
# the below one are the lambda functions you can use this instead of the traditional functions
for title in sorted(titles,key=lambda title:titles[title],reverse=True):
print(title,titles[title])