variables in a function python code example
Example 1: declaring variables in python
my_name = "your name here "# you can add perenthisis
print(my_name)
Example 2: global variable python
a = 0
def testFor():
global a
if(a == 0):
#run code