Question 10
Consider the following Python code snippet.
Filename: module.py
from pyhtml import *import sysvar = sys.argv[1:]
def list_func(stack): for tech in stack: yield span(tech)
doc = html( head(title('My Document')), body( h3('Frontend technologies'), list_func(var[::-1]) ))print(doc.render())How will the browser render the output of the above code if it is run on the terminal using the command python module.py HTML CSS JS VUE?