-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBryan-Cranstons-Statiscian.py
75 lines (65 loc) · 1.12 KB
/
Bryan-Cranstons-Statiscian.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
story = "A"
text = "B"
role = "C"
director = "D"
cast = "F"
# A B C D F
# Story +6 +5 +4 +2 +0
# Text +5 +4 +3 +1 +0
# Role +4 +3 +2 +1 +0
# Director +3 +2 +1 +0 +0
# Cast/Misc +2 +1 +0 +0 +0
total = 0
if story =="A":
total+=6
elif story=="B":
total+=5
elif story=="C":
total+=4
elif story=="D":
total+=2
else:
total=total
if text =="A":
total+=5
elif text=="B":
total+=4
elif text=="C":
total+=3
elif text=="D":
total+=1
if role =="A":
total+=4
elif role=="B":
total+=3
elif role=="C":
total+=2
elif role=="D":
total+=director
else:
total=total
if director =="A":
total+=3
elif director=="B":
total+=2
elif director=="C":
total+=1
else:
total=total
if cast =="A":
total+=2
elif cast=="B":
total+=1
else:
total=total
print(total)
if total >= 20:
print("Perfect score")
elif total >=17:
print("Must do")
elif total >=14:
print("Seriously consider")
elif total >=12:
print("On the bubble")
else:
print("Pass")