how to declare an variable in python code example
Example 1: declaring variables in python
my_name = "your name here "# you can add perenthisis
print(my_name)
Example 2: variables in python
#Variables
#Name your variable
myvar = 'Variable'
Number = 9
print(myvar, Number, 'are the variables I made')