【发布时间】:2014-07-17 06:42:09
【问题描述】:
while 1:
try:
#read from stdin
line = sys.stdin.readline()
except KeyboardInterrupt:
break
if not line:
break
fields = line.split('#')
...
如何跳过stdin 的第一行阅读?
【问题讨论】: