1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import time
print("====================================")
print("- Welcome to the options predictor -")
print("====================================")
print(" * Created By Sam White * ")
print ("\nHey, welcome to the options picker - I am going to help you choose your GCSE options. Look - Here is a list of all the avaliable GCSE's to hep you!\n")
listofoptions=["Food Tech","Art and Design","Geography","History","Ecenomics","Spanish","German","Drama","Music","Computer Science","Film Studies","Physical Education"]
fav_subjects=input("So, press enter and write your top 5 favourite subjects in order of best to worst?")
fav_subjects=[]
for i in range(5):
subject=input("Subject:")
fav_subjects.append(subject)