6 lines
83 B
Python
6 lines
83 B
Python
#! /usr/bin/env python
|
|
import sys
|
|
|
|
for entry in sys.path:
|
|
print(" - " + entry)
|