The program is running but not continuing
print("Code", "\t\tDescription", "\t\t Price") print("a", "\t\tMenudo with Rice", "\tP50.00") print("b", "\t\tBurger Spaghetti", "\tP70.00") print("c", "\t\tTapa with Rice", "\t\tP60.00") num=eval(input("How many orders do you want to purchase? ")) for i in range(num): order=int(input("Type the code of your choice: ")) quantity=int(input("Type the quantity of your order: ")) a=eval("Menudo with Rice", "\tP50.00") b=eval("Burger Spaghetti", "\tP70.00") c=eval("Tapa with Rice", "\tP60.00") if order==a: print(quantity, a) elif order==b: print(quantity, b) elif order==c: print(quantity, c) total_purchase=eval(input("Total purchase:", a+b+c)) total_payment=eval(input("Total payment: ", total_payment-total_purchase ))