Skip to content

Instantly share code, notes, and snippets.

@menon92
Created January 23, 2018 07:59
Show Gist options
  • Save menon92/6bb5213b477696a015dc50461fb52740 to your computer and use it in GitHub Desktop.
Save menon92/6bb5213b477696a015dc50461fb52740 to your computer and use it in GitHub Desktop.
def get_info(name = None, age = '21'):
return name, age;
name, age = get_info(name = "Arif", age = 24)
print("Name:", name)
print("Age: ", age)
Output:
Name: Arif
Age: 24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment