Facebook
From hiroyuki, 3 Years ago, written in Plain Text.
This paste is a reply to cat command in python from hiroyuki - view diff
Embed
Download Paste or View Raw
Hits: 128
  1. import sys
  2. import fileinput
  3. for a in fileinput.input():
  4.     print(a, end='')
  5.