Want to make creations as awesome as this one?

Transcript

A Python statement is a piece of code which is complete and can be run or “executed” by the Python interpreter (the program on your computer which runs the Python code). Normally, and everywhere in this course, there will be one statement per line of code. The code of a statement tells the computer to do something. In the cases above, each statement calls the print function. For now, statements will be executed one after another, from top to bottom.

Focus on Definitions: Statement