Quick actions

cmd+k|ctrl+k

Navigation

Languages

Arguments v/s Parameter

Snippet info

Language

Python

Visibility

public

Author

alokhegde

Created

2020-10-05T09:21:12Z

Updated

2020-10-05T09:21:12Z

#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