[Solved] What is the correct output for the FizzBuzz test in python?
Think about the order in which these statements occur, elif (count % 5) and (count % 3): this line of code will never execute, as either if (count % 3) == 0: or elif (count % 5) == 0: will execute first if those conditions are true. In this case you want to check if … Read more