管道到python缩进

时间:2013-07-23 05:09:47

标签: python pipe

将流程传递给python程序,如此

 cat someFile | python -c "<Python code over here>"

如何解释缩进?

1 个答案:

答案 0 :(得分:1)

一个简单的选择是添加缩进:

$ echo foo | python -c '
> if True:
>  print "yes"
> '