如下的资料是关于python打开和关闭文件的内容。
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name
# Close opend file
fo.close()
如下的资料是关于python打开和关闭文件的内容。
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "wb")
print "Name of the file: ", fo.name
# Close opend file
fo.close()
本文标题:python打开和关闭文件的代码
本文链接:https://www.haomeiwen.com/subject/wdiynqtx.html
网友评论