Skip to content

Instantly share code, notes, and snippets.

@vivek-vijayan
Created August 27, 2022 08:35
Show Gist options
  • Save vivek-vijayan/67e2b02ced4a004b66d94b4d09d33293 to your computer and use it in GitHub Desktop.
Save vivek-vijayan/67e2b02ced4a004b66d94b4d09d33293 to your computer and use it in GitHub Desktop.
Double star operator
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