Как импортировать файлы с рабочего стола в Python

import os
path = os.path.dirname(os.path.realpath(__file__))
sys.path.append(path)
Homeless Hyena