Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 466 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 466 Bytes
description
In this section, we shall learn about control flow statements which includes if, if..elif, if..else, while, for loops

Control Flow Statements

A program’s control flow is the order in which the program’s code executes.

The control flow of a Python program is regulated by conditional statements, loops, and function calls.

This section covers the if statement and for and while loops; functions are covered later chapters.