Python continue statement

After reading this Python continue statement topic, you will know the continue statement flowchart, theory, and examples, and you will understand how to use continue statement with the loop.

Python continue statement generally used with conditional statements such as if statement within the loop (like for loop and while loop). The continue statement skips all statements written after it as well as transfer the program control to the next iteration of the loop.

Continue reading Python continue statement

Python – Functions

After reading this Python function topic, you will able to use it in Python, and you will understand the function structure also you will know the advantages.

In real life, instead of doing all task alone, we generally get our work through others i.e. we divide our work. That’s why Python provides us a subprogram facility called function.

In Python, a large program divides into subprogram for performing the specific task and this subprogram is called function. The function is generally reusable. Continue reading Python – Functions

Python – Recursion and Recursive Function

After reading this Python Recursion and Recursive Function topic, you will able to use Recursion in Python, you will understand the theory and example also you will know the Advantages and Disadvantages.

The function call itself is known as recursive function and the recursion is the process where the function called itself. The recursive function also referred as self-called function. Whenever function called from itself then there will be an infinite loop. To break this infinite loop every recursive function must check the terminating condition and then decide whether to call function again or not. Continue reading Python – Recursion and Recursive Function