variables declaration in python code example
Example 1: how to declare a variable in python
variable = 2
Example 2: declaring variables in python
my_name = "your name here "# you can add perenthisis
print(my_name)
variable = 2
my_name = "your name here "# you can add perenthisis
print(my_name)