
from django.http import HttpResponse

def hello(request,who):
    html="""<html>
    <body>
    <h1>Hello, """+who+"""</h1>
    </body>
    </html>
    """
    return(HttpResponse(html))

