Mam poniższy kod:
def hello():
return 'Hi :)'
Jak uruchomić ten kod bezpośrednio z funkcji z wiersza poleceń?
1 odpowiedź
Za pomocą argumentu -c (command) (zakładając, że plik ma nazwę test.py):
$ python -c 'import test; print test.hello()'
Alternatywnie:
$ python -c 'from test import *; print hello()'
$ python -c 'from test import hello; print hello()'