美文网首页
Python 23 Programming Tutorial

Python 23 Programming Tutorial

作者: 豆表示低调 | 来源:发表于2016-08-30 14:18 被阅读0次

I read in the comments that a lot of people were having trouble

fw = open('sample.txt', 'w')
fw.write('Writing some stuff in my text file\n')
fw.write('I like bacon\n')
fw.close()

fr = open('sample.txt', 'r')
text = fr.read()
print(text)
fr.close()

相关文章

网友评论

      本文标题: Python 23 Programming Tutorial

      本文链接:https://www.haomeiwen.com/subject/raaxettx.html