Python Fügen Sie das aktuelle Verzeichnis zum Importpfad hinzu

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