python打开和关闭文件的代码
2019-04-29 本文已影响0人
吓了一跳哦
如下的资料是关于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()