开发者社区> 问答> 正文

怎么在python里打开文件

怎么在python里打开文件

展开
收起
云计算小粉 2018-05-10 20:10:40 1341 0
1 条回答
写回答
取消 提交回答
  • # -*- coding: UTF-8 -*- import os; document = open("testfile.txt", "w+"); print "文件名: ", document.name; document.write("这是我创建的第一个测试文件!\nwelcome!"); print document.tell(); #输出当前指针位置 document.seek(os.SEEK_SET); #设置指针回到文件最初 context = document.read(); print context; document.close();
    2019-07-17 22:21:42
    赞同 展开评论 打赏
问答分类:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载