2👍
✅
It basically puts a newline between every item in html
.
So if
html = ['<!DOCTYPE html>', '<html>', '<body>', '<p>']
that piece of code will create this string:
"""
<!DOCTYPE html>
<html>
<body>
<p>
"""
Source:stackexchange.com