print() doesn't output HTML tags
I was experimenting in Pyscript and I tried to print an HTML table, but it didn't work. It seems to delete the tags and mantain just the plain text.
This is the code that I tried, but it just printed "test" once:
<py-script>
print("<table>")
for i in range (2):
print("<tr>")
for j in range (2):
print("<td>test</td>")
print("</tr>")
print("</table>")
</py-script>
And this is a screenshot I took of the output:

print() doesn't output HTML tags
I was experimenting in Pyscript and I tried to print an HTML table, but it didn't work. It seems to delete the tags and mantain just the plain text.
This is the code that I tried, but it just printed "test" once:
And this is a screenshot I took of the output:
