Created
August 27, 2022 08:35
-
-
Save vivek-vijayan/67e2b02ced4a004b66d94b4d09d33293 to your computer and use it in GitHub Desktop.
Double star operator
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 showNames(x,y,z): | |
print("\n Printing output : ") | |
print(x) | |
print(y) | |
print(z) | |
dictnames = {'x':'medium', 'y':'vivek','z':'vijayan'} | |
showNames(** dictnames) | |
''' OUTPUT | |
Printing output : | |
medium | |
vivek | |
vijayan | |
''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment