python 中缀编程工具库pipe使用方法

from pipe import *
print([1,2,3] | sum)
print([1, 2, 3, 4, 5] | tee | add)

编程技巧