I have to determine if all the numbers in a list are prime numbers and then return a boolean \"True\" or \"False\" statement depending on the outcome. I made some conditional st
You should see the problem the other way around.
If you you find a number which is not prime you should return False, and after your loop end you should return True.