Skip to content

Instantly share code, notes, and snippets.

@vivek-vijayan
Created August 27, 2022 08:29
Show Gist options
  • Save vivek-vijayan/61646ea64d800ccc4ab420fe72f995b4 to your computer and use it in GitHub Desktop.
Save vivek-vijayan/61646ea64d800ccc4ab420fe72f995b4 to your computer and use it in GitHub Desktop.
main_with_star operator
def showNames(x,y,z):
print("\n Printing output : ")
print(x)
print(y)
print(z)
listnames = ['medium','vivek','vijayan']
showNames(* listnames).
''' Output
Printing output :
medium
vivek
vijayan
'''
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment