Created
February 16, 2019 15:33
-
-
Save Ventsislav-Yordanov/7b9cdf3d5bac27ff8a016d6b8710136f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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