#!/usr/bin/env python
#encoding=utf-8
import sys
for line in sys.stdin.readlines():
    print line.strip()

 

 

python ./stdin_test.py < a.txt

相关文章:

  • 2021-11-27
  • 2022-02-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2021-07-23
猜你喜欢
  • 2022-12-23
  • 2022-01-04
  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
  • 2022-12-23
  • 2022-01-30
相关资源
相似解决方案