15 lines
199 B
Python
15 lines
199 B
Python
|
#! /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()
|