[Answered ]-Django request.META 2

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>
"""

http://docs.python.org/library/stdtypes.html#str.join

Leave a comment