Variable

A variable is a storage location and associated name which contains a modifiable value.

Python Example

# Define some variables.
string_example = "This is a string."
integer_example = 3
floating_point_example = 5.7
def function_example():
    print("This is a function.")