Python Lesson 2
Python Lesson 2
Python Variables
Lesson 2 Content
• Python Variables
• Creating Variables
• Casting
• Get the Type
• Single or Double Quotes?
• Case-Sensitive
• Python Variable Names
➢ Camel Case
➢ Pascal Case
➢ Snake Case
• Python Assign Multiple Values
• Python Output Variables
• Python Global Variables
• Python Variable Exercises
Python Variables
In Python, variables are created when you assign a value to it:
Example
Variables in Python:
x = 5
y = "Hello, World!" Python has no command for declaring a variable.
Notice the space character after "Python " and "is ", without them the result would be
"Pythonisawesome".
• For numbers, the + character works as a mathematical operator:
Example x = 5
y = 10
print(x + y)
• In the print() function, when you try to combine a string and a number with the + operator, Python
will give you an error:
Example x = 5
y = "John"
print(x + y)
• The best way to output multiple variables in the print() function is to separate them with commas,
which even support different data types:
Example x = 5
y = "John"
print(x, y)
Python - Global Variables
Global Variables
Variables that are created outside of a function (as in all of the examples above) are known as global
variables.
Global variables can be used by everyone, both inside of functions and outside.
Example
x = "awesome"
def myfunc():
print("Python is " + x)
myfunc()
• If you create a variable with the same name inside a function, this variable will be local, and can
only be used inside the function. The global variable with the same name will remain as it was,
global and with the original value.
Example
Create a variable inside a function, with the same name as the global variable
x = "awesome"
def myfunc():
x = "fantastic"
print("Python is " + x)
myfunc()
print("Python is " + x)
The global Keyword
Normally, when you create a variable inside a function, that variable is local, and can only be used
inside that function.
To create a global variable inside a function, you can use the global keyword.
Example
If you use the global keyword, the variable belongs to the global scope:
def myfunc():
global x
x = "fantastic"
myfunc()
print("Python is " + x)
• Also, use the global keyword if you want to change a global variable inside a function.
Example
To change the value of a global variable inside a function, refer to the variable by using
the global keyword:
x = "awesome"
def myfunc():
global x
x = "fantastic"
myfunc()
print("Python is " + x)
Now you have learned a lot about variables, and how to use them in Python.
Try to insert the missing part to make the code work as expected:
Exercise:
Create a variable named carname and assign the value Volvo to it.
= " "