Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
def hello(): return "hello world"
上記は私のpythonコードです。私が入力しているシェルで:
fooshell=$(python -c 'import hello; hello.hello()')
しかし、私がするとき
echo $fooshell
私は空の行を取得しています。
使用するprint
print
fooshell=$(python -c 'import hello; print(hello.hello())')
hello()メソッド自体がに出力されない場合stdout。
hello()
stdout