Python keeps giving me errors?

I'm doing a stupid Python lab and I don't know why I keep getting these errors. The lab asks me to do a for loop with iterable numbers from numbers via user input stored into a variable. Then in the loop, if the variable is divisible by 3, the console should print a word; if it's divisible by 5, print another word and so on and so forth. Then I have to ask the user if they want to exit the program; if not, then I have to let them enter more numbers and continue the loop. The errors are telling me the input isn't iterable object, string isn't recognized, and invalid literal for int () with base 10: 'yes'.
Python keeps giving me errors?
Updates
+1 y
I can finally get the console to print the words and input prompts after changing my code further by searching online. But seems that the loop itself doesn't work the way I intended to. Thanks to rabbitzzz aka the only person who answered me, for helping me out.
Updates
+1 y
I have updated my code to have empty arrays in which the inputted numbers get stored into the first array, and then they're converted to being either fizz, buzz, or fizzbuzz which are stored in a separate array. From there, the arrays get appended whatever that means, and I edited the count variables and count print statements to adapt to the array crap. So now the code does output properly but the count function is still broken. Oh right, I've added and edited existing code beforehand and my lo
Python keeps giving me errors?
Post Opinion