I can't understand why this wont work:
EntryRow = input("Which row would you like to book for?")
Upper = EntryRow.upper()
while Upper != 'A' or 'B' or 'C' or 'D' or 'E':
print("That is not a row")
EntryRow = input("Which row would you like to book for?")
Upper = EntryRow.upper()
'!=' has precedence over 'or'. What your code really does is:
Which is always true.
Try this instead: