So, age is a of type string when it should be of type int.
def main():
age = int(input("How old are you? "))
if age >= 13:
#the rest of your code.
Strings cannot be greater than another string only integers and other number based data types. Also, you should change the list variable as I mentioned on the earlier question. Best of luck.