返回列表 发帖
  1. """
  2. python3
  3. 2016年4月27日 16:50:03 codegay
  4. """
  5. with open("a.txt") as f:
  6.     [print(x) for r in f for x in r.split() if len(x)==8]
复制代码
去学去写去用才有进步。安装python3代码存为xx.py 双击运行或右键用IDLE打开按F5运行

TOP

返回列表