Execute a python file with arguments.
import sys
print('Hello {} {}'.format(sys.argv[1], sys.argv[2]))
The file above is checked into your repository at the path /print.py
# Storyscript
result = python `print.py` "foo" "bar"
The variable
result
would equal"Hello foobar"