Quick actions

cmd+k|ctrl+k

Navigation

Languages

Default Parameters

Snippet info

Language

Python

Visibility

public

Author

dharmendrarah

Created

2023-01-10T15:32:22.373472Z

Updated

2023-01-10T15:32:22.373472Z


def say_hello(name="Swekshsa",emoji="Withcer"):
    print(f"Hellooo {name} {emoji}")


say_hello("Dharmendra","Hehehehehe")
say_hello(name="Sweksha",emoji="Heheheh")
say_hello("Don")
INFO