Python Ajouter le répertoire actuel pour importer le chemin

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