Skip to content

Instantly share code, notes, and snippets.

@menon92
Created January 23, 2018 08:01
Show Gist options
  • Save menon92/db73c4337ba2d2c6d17e3c461b6d5e46 to your computer and use it in GitHub Desktop.
Save menon92/db73c4337ba2d2c6d17e3c461b6d5e46 to your computer and use it in GitHub Desktop.
def get_info(name, age):
return name, age;
name, age = get_info("Arif", 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