xxxxxxxxxx
def func(thisIsParameter):
# basically parameter can be tought of like an variable of the function which only exists within it
print(thisIsParameter)
myfunc("this is an argument of the function my func")
xxxxxxxxxx
def myfunc(name): #====> name is parameter
print(name)
myfunc("Ashish") #====> Ashish is argument