Skip to content

Instantly share code, notes, and snippets.

@codetombomb
Last active September 24, 2020 19:06
Show Gist options
  • Save codetombomb/547e5954ea7337ec17965fcd587a1645 to your computer and use it in GitHub Desktop.
Save codetombomb/547e5954ea7337ec17965fcd587a1645 to your computer and use it in GitHub Desktop.
Parameter default
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