#!/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)
#!/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)
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。