code = 200 ct = "text/html" content = "

Bonjour!

" print(f"HTTP/1.1 {code}") print(f"Content-Type: {ct}") print(f"Content-Length: {len(content)}") print() print(content)