Last active
February 16, 2019 15:19
-
-
Save Ventsislav-Yordanov/9320964bee77c0c046120681dd197783 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 kwargs_example(**kwargs): | |
print(type(kwargs)) | |
print(kwargs) | |
kwargs_example(age = 24, position = "data analyst") | |
kwargs_example(name = "Jake", email = "[email protected]", position = "machine learning engineer") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment