Arguments v/s Parameter
#Example 1
def hello(greeting,name):
print(f'{greeting} {name}' )
#Positional Arguments
hello('Hellloooo','Alok Hegde')
#Keyword arguments
hello(name='Alok Hegde',greeting='Hello')
INFO
#Example 1
def hello(greeting,name):
print(f'{greeting} {name}' )
#Positional Arguments
hello('Hellloooo','Alok Hegde')
#Keyword arguments
hello(name='Alok Hegde',greeting='Hello')