7 lines
158 B
Python
7 lines
158 B
Python
|
from __future__ import print_function
|
||
|
import os
|
||
|
|
||
|
def execute():
|
||
|
for name in ['FOO', 'BAR']:
|
||
|
print(name, '=', os.environ.get(name, '[undefined]'))
|