Answers for "python receive stdin"

3

python read from stdin

import sys
data = sys.stdin.readlines()
Posted by: Guest on December-07-2020
0

python read from stdin pipe

k = 0
try:
    while True:
        print sys.stdin.readline()
        k += 1
except KeyboardInterrupt:
    sys.stdout.flush()
    pass
print k
Posted by: Guest on September-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language