1 Star 0 Fork 1

刘文彪/Python数据分析学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test_txt.py 148 Bytes
一键复制 编辑 原始数据 按行查看 历史
tongzi 提交于 2018-10-30 20:40 . 读取文本文件并输出到控制台
with open('test.txt', 'r+') as f:
f.seek(15)
print(f.readline())
with open('test.txt') as f:
data = []
for d in f:
data.append(d)
print(data)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/liu-wenbiao-sxhh/DataAnalysisLearning.git
git@gitee.com:liu-wenbiao-sxhh/DataAnalysisLearning.git
liu-wenbiao-sxhh
DataAnalysisLearning
Python数据分析学习
master

搜索帮助