Problem

# Problem 1 ### Write a Python script to create HTML tags around the word. Use string formatting.

1
2
3
4
5
word = "python"
element = "i"

Output:
<i>python</i>