14 lines
199 B
Python
Executable file
14 lines
199 B
Python
Executable file
#! /usr/bin/env python3
|
|
|
|
import web
|
|
|
|
|
|
web.print_headers_if_needed()
|
|
|
|
print('<h1>Python</h1>')
|
|
|
|
print('<h2>os.environ</h2>')
|
|
web.print_environment()
|
|
|
|
print('<h2>variables</h2>')
|
|
web.print_variables()
|