© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Rohit Tanwar
I want to be able to use | operator so I can do the following in python:-
file1.py | file2.py
File1.py:-
for i in range(120):
print(i)
file2.py
for m in some_command():
print(m,m\*m)
What to replace the some_command with?
Mark
Is this what you mean? docs.python.org/2/library/pipes.html
Mark
Is this what you mean? docs.python.org/2/library/pipes.html