endFlag = False
while endFlag == False:
fruits= ['apple','cherry','banana','kiwi', 'lemon','pear', 'peach','avocado']
num = int(input('please select a fruit with the number associated with it ' ))
if num == 0:
print (fruits[0])
elif num ==1:
print(fruits[1])
elif num == 2:
print(fruits[2])
elif num == 3:
print(fruits[3])
elif num == 4:
print(fruits[4])
elif num == 5:
print(fruits[5])
elif num == 6:
print (fruits[6])
elif num == 7:
print(fruits[7], ',please enjoy your fruit!')
else:
print('enter another fruit please, that one is not available')
VendingMachine = input("would you like to repeat the program again? Yes/No ")
if VendingMachine == 'N':
endFlag = True
This code shows "SyntaxError: multiple statements found while compiling a single statement" and I need help because I do not know why.