Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created December 29, 2020 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/109f4c7e4a50a01904b3c96f5f64976c to your computer and use it in GitHub Desktop.
Save aveek22/109f4c7e4a50a01904b3c96f5f64976c to your computer and use it in GitHub Desktop.
import json
def greet(*users):
for user in users:
print(f'Welcome {user}')
def main():
greet('Fred', 'Harry', 'Tom')
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment