Guest User

Untitled

a guest
Mar 24th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. def heading_generator(title, heading_type):
  2. return f'<h{heading_type}>{title}</h{heading_type}>'
  3.  
  4.  
  5. print(heading_generator('Greetings!', '1'))
  6. print(heading_generator('I am in a title', '3'))
Add Comment
Please, Sign In to add comment