Input, Processing, and Output


Statements

Statements in Python are made up of:

Displaying Output with the print Function


Variables

A name that represents a value stored in the computer memory The structure of a variable:

Identifiers

Identifiers are the names for things (variables, functions, etc) in the language. Some identifiers are built-in, and others can be created by the programmer.

Style-conventions (for indentifiers)

More Python naming conventions

Data Types

There are a small set of what are known as primitives. These are basic data types that are determined for you by the interpreter. More on Python types.

Strings and String Literals


Comments


Operators