#!/usr/bin/env python3
# -*- coding: utf-8 -*-

__author__ = 'jiangwenwen'

# 从文件中按行读取数据
file = open("D:\坚果云\我的坚果云\\2019年计划.txt")
while 1:
    lines = file.readlines(100000)
    if not lines:
        break
    for line in lines:
        print(line)

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-07-15
  • 2022-12-23
  • 2022-02-16
  • 2022-12-23
  • 2021-06-21
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
相关资源
相似解决方案