美文网首页
读写文件

读写文件

作者: 一只安静的读者 | 来源:发表于2017-12-08 22:34 被阅读0次

    open

    my_file=open('my file.txt','w')#用法: open('文件名','形式'), 其中形式有'w':write;'r':read.

    my_file.write(text)#该语句会写入先前定义好的 text

    my_file.close()#关闭文件

    read

    file.read() #读取文件所有内容

    file.readline() #按行读取,一行

    file.readllines()#读取所有行


    file=open('my file.txt','r')

    content=file.readlines()# python_list 形式,每行结果存入list中

    for item in content:

           print(item)



    相关文章

      网友评论

          本文标题:读写文件

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