I looked it up and only found split() but couldnt use it, it gave an error. Is there a way to get all inputs at once.
total = 0
a = int(input("Enter your age"))
b = int(input("Enter your age"))
c = int(input("Enter your age"))
d = int(input("Enter your age"))
e = int(input("Enter your age"))
Age_List = [a, b, c, d, e]
for x in Age_List:
if x > 3:
total += 100
else:
continue
print(total)