Skip to content

Latest commit

 

History

History
12 lines (6 loc) · 374 Bytes

File metadata and controls

12 lines (6 loc) · 374 Bytes

Writing Python programs

A program consists of multiple lines that are executed in one go.

Usually a program contains the following sections:

input-processing-output

Of course, programs can grow a lot more complicated than that.

In this chapter, we will learn to know the print() function for producing output, loops and branching statements.