Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Last active September 24, 2020 19:01
Show Gist options
  • Save codetombomb/598d7d0c533a616e7765e02a82b344f1 to your computer and use it in GitHub Desktop.
Save codetombomb/598d7d0c533a616e7765e02a82b344f1 to your computer and use it in GitHub Desktop.
Multiple Params
def introduction_with_language(name, language):
print(f"Hi, my name is {name} and I am learning to program in {language}.")
if __name__ == "__main__":
introduction_with_language("Tom", "Python")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment