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.
そのようにプロセスをpythonプログラムにパイプしながら
cat someFile | python -c "<Python code over here>"
インデントはどのように説明されますか?
簡単なオプションの 1 つは、インデントを追加することです。
$ echo foo | python -c ' > if True: > print "yes" > '