Created
August 27, 2022 08:29
-
-
Save vivek-vijayan/61646ea64d800ccc4ab420fe72f995b4 to your computer and use it in GitHub Desktop.
main_with_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) | |
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