how to define variables 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
VarName = "Value"
VarName = 56
VarName = True
Example 3: global variables python
global x
x=1
Example 4: python variables
var = 640
number = 604
tr = 623