Looping template

Report a typo

Write a template that deconstructs the container value that was passed to it. For example, take a look at this Python loop:

for item, value in container.items():
    print(item, value)

Wrap item, value in the template in a simple <p> tag

Write a program in Python 3
main_template = '''
# your code here
'''
___

Create a free account to access the full topic