Skip to content

Instantly share code, notes, and snippets.

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