Skip to content

Instantly share code, notes, and snippets.

@anuragregmi
Created July 1, 2022 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anuragregmi/d7885455f95b546e0c2b19e9c236612b to your computer and use it in GitHub Desktop.
Save anuragregmi/d7885455f95b546e0c2b19e9c236612b to your computer and use it in GitHub Desktop.
Python test functions
def get_hello(name):
return f"hello {name}"
def say_hello(name):
print(get_hello(name))
def add(a, b):
return a + b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment