File size: 220 Bytes
7644eac
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import os
import sys
print("--- test_venv.py started ---")
print(f"Current working directory: {os.getcwd()}")
print(f"Python version: {sys.version}")
print(f"sys.path: {sys.path}")
print("--- test_venv.py finished ---")