Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created March 15, 2018 23:41
Show Gist options
  • Save jordanhudgens/e6f641ae9b273ff47daf1a67db3c2156 to your computer and use it in GitHub Desktop.
Save jordanhudgens/e6f641ae9b273ff47daf1a67db3c2156 to your computer and use it in GitHub Desktop.
def heading_generator(title, heading_type):
return f'<h{heading_type}>{title}</h{heading_type}>'
print(heading_generator('Greetings!', '1'))
print(heading_generator('I am in a title', '3'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment