Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 16, 2019 15:33
Show Gist options
  • Save Ventsislav-Yordanov/7b9cdf3d5bac27ff8a016d6b8710136f to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/7b9cdf3d5bac27ff8a016d6b8710136f to your computer and use it in GitHub Desktop.
def print_info(name, position, email):
print("name:", name)
print("position:", position)
print("email:", email)
details = ("data analyst", "[email protected]")
print_info("Jake", *details)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment