Files
python-VM/playground/python-debugging.py

8 lines
109 B
Python

import os
expand = os.path.expanduser('~')
var = os.environ.get('VIRTUAL_ENV', expand)
print(var, expand)