Multi-Line Statements: "Hello, Python!"
Multi-Line Statements: "Hello, Python!"
"
Class names start with an uppercase letter. All other identifiers start with a
lowercase letter.
If the identifier also ends with two trailing underscores, the identifier is a
language-defined special name.
Reserved Words
Multi-Line Statements
Statements in Python typically end with a new line. Python does, however,
allow the use of the line continuation character (\) to denote that the line
should continue. For example −
total = item_one + \
item_two + \
item_three
Statements contained within the [], {}, or () brackets do not need to use
the line continuation character. For example −
days = ['Monday', 'Tuesday', 'Wednesday',
'Thursday', 'Friday']