so in PHP it's possible to have an entire section of php source be filled with direct raw html:
<?php
function doThis(){
?>
<html>
<a>LOOL</a>
</html>
<?php
}
doThis();
?>
and calling doThis() will print out all the html code between the curly braces...is there a similar functionality in Python? or do I have to virtually print all the HTML individually using the print command? python's indentation seems to make it really inconvenient to write HTML on python code