Facebook
From hiroyuki, 3 Years ago, written in Plain Text.
This paste is a reply to cat command in python from hiroyuki - go back
Embed
Viewing differences between cat command in python and Re: cat command in python
import sys
import fileinput
for a in fileinput.input():
    print(a, end='')