How to use the pipe(|) operator in python 3
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?