A literal is a number or string that appears directly in a program. : variable « Introduction « Python Tutorial






The following are all literals in Python:
42                       # Integer literal
3.14                     # Floating-point literal
1.0j                     # Imaginary literal
'hello'                  # String literal
"world"                  # Another string literal
"""Good night"""                 # Triple-quoted string literal

Using literals and delimiters, you can create data values of some other fundamental types:
[ 42, 3.14, 'hello' ]    # List
( 100, 200, 300 )        # Tuple
{ 'x':42, 'y':3.14 }     # Dictionary








1.5.variable
1.5.1.A variable is basically a name that represents some value
1.5.2.Sequence Unpacking
1.5.3.A literal is a number or string that appears directly in a program.
1.5.4.Python is dynamically typed, no pre-declaration of a variable or its type is necessary.
1.5.5.Once a variable has been assigned, you can access it by using its name
1.5.6.None placeholder