Last active
February 1, 2020 19:55
-
-
Save edenau/4934259db4ffa3ed12fbd190ec812606 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 foo2(**kwargs): | |
print(type(kwargs)) | |
for keyword, value in kwargs.items(): | |
print(f'{keyword}={value}') | |
foo2(a=1, b=2, z='end') | |
# <class 'dict'> | |
# a=1 | |
# b=2 | |
# z=end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment