-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanime.py
More file actions
33 lines (22 loc) · 1.25 KB
/
anime.py
File metadata and controls
33 lines (22 loc) · 1.25 KB
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
print("Title of program:Anime recommendations")
print()
print("Hi!You'll get a anime recommendation based on your choices :D")
print("Please respond with a number 1 - 5, where 1 is strongly disagree and 5 is strongly agree.")
print()
knb1 = input("I like to play sports.")
sa1 = input("I prefer cartoons to movies with human actors.")
tg1 = input("I am not afraid of gore and monsters.")
knb2 = input("I prefer working in teams to working alone.")
sa2 = input("I like happy endings where no one dies :D")
tg2 = input("I prefer stories with deep meanings and angsty endings to stories with happy fairytale endings.")
knb_final = int(knb1) + int(knb2)
sa_final = int(sa1) + int(sa2)
tg_final = int(tg1)+ int(tg2)
print()
if knb_final > sa_final and knb_final > tg_final:
print("You should watch Kuroke No Basuke! It's a really nice basketball anime :)")
elif sa_final > tg_final:
print("You should watch Spirited Away! It's a touching movie that never fails to make me cry no matter how many times I watch it T_T")
else:
print("You should watch Tokyo Ghoul! The anime is less gory and violent compared to the manga, and it really says a lot about society.")
print("I hope you liked your anime recommendation!You can make a pull request if you want more animes :D")