`
woxiaoe
  • 浏览: 276572 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

python文件操作(1)

阅读更多

# -*- coding:utf-8 -*- #

#写文件

myfile = open('hello world','w');

myfile.write('hello world');

myfile.close();

 

#读文件

myfile = open('hello world','r');

str = myfile.readline();

print("文件内容:\n" + str);

 

 

OutPut

 

文件内容:

hello world


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics