Python Dodaj bieżący katalog do ścieżki importowej

import os
import sys
sys.path.append(os.getcwd())
import foo
Hemang Joshi