Você precisa cd
no diretório onde seu arquivo python está localizado e, em seguida, invocar o shell interativo do python para poder chamar e executar funções interativamente.
# cd to the directory
$ cd ~/Dropbox/emp/Python/
# invoke the python interactive shell
$ python # use 'python3' to invoke the Python3 shell
O shell interativo do Python seria parecido com:
Python 2.7.6 (default, Mar 22 2014, 22:59:38)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>>
Aqui você pode importar o módulo (seu arquivo * .py) e execute as funções escritas aqui:
>>> from stromkosten_pro_jahr import stromkosten_pro_jahr
>>> stromkosten_pro_jahr(20,3)
[The output of function would be shown right here]
Para mais informações, sugiro que você leia o O tutorial em Python .