Skip to content
Advertisement

How to understand this loop program in Python

I’m trying to polish my Python skills and this made me confused. Here’s the code:

JavaScript

I don’t understand what the count does.

Advertisement

Answer

Let’s comment up the code with explanations of what each line does and then examine the output.

JavaScript

So, based on all that, what should we expect the output to be? Well, we know that every character of greeting will be printed in the last line of the loop. We also know that every even character of greeting will be printed twice, once inside the if block, and once at the end of the loop. Finally, we know that “done” will be printed after the loop is complete. Therefore, we should expect the following output:

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement