I have a Python function, fooPy() that returns some value. ( int / double or string)
I want to use this value and assign it in a shell script. For example following is the 开发者_JS百科python function:
def fooPy():
return "some string"
#return 10 .. alternatively, it can be an int
fooPy()
In the shell script I tried the following things but none of them work.
fooShell = python fooPy.py
#fooShell = $(python fooPy.py)
#fooShell = echo "$(python fooPy.py)"
You can print your value in Python, like this:
print fooPy()
and in your shell script:
fooShell=$(python fooPy.py)
Be sure not to leave spaces around the =
in the shell script.
In your Python code, you need to print the result.
import sys
def fooPy():
return 10 # or whatever
if __name__ == '__main__':
sys.stdout.write("%s\n", fooPy())
Then in the shell, you can do:
fooShell=$(python fooPy.py) # note no space around the '='
Note that I added an if __name__ == '__main__'
check in the Python code, to make sure that the printing is done only when your program is run from the command line, not when you import it from the Python interpreter.
I also used sys.stdout.write()
instead of print
, because
print
has different behavior in Python 2 and Python 3,- in "real programs", one should use
sys.stdout.write()
instead ofprint
anyway :-)
If you want the value from the Python sys.exit
statement, it will be in the shell special variable $?
.
$ var=$(foo.py)
$ returnval=$?
$ echo $var
Some string
$ echo returnval
10
You should print
the value returned by fooPy
. The shell substitution reads from stdout. Replace the last line of your program with print fooPy()
and then use the second shell pipeline you've mentioned. It should work.
精彩评论