美文网首页
python打开和关闭文件的代码

python打开和关闭文件的代码

作者: 吓了一跳哦 | 来源:发表于2019-04-29 15:19 被阅读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打开和关闭文件的代码

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