python Python - 文件I / O.

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python - 文件I / O.相关的知识,希望对你有一定的参考价值。

#!/usr/bin/python
# Filename: file_io.py

poem = '''\
Programming is fun
When the work is done
if you wanna make your work also fun:
    use Python!
'''

with open('poem.txt', 'w', encoding="utf-8") as f:  # 写模式打开
    f.write(poem) # 写文件

with open('poem.txt', encoding="utf-8") as f: # 如果没有提供打开模式, 则默认假设为读模式
    while True:
        line = f.readline()
        if not line:
            break
        print(line, end='')

以上是关于python Python - 文件I / O.的主要内容,如果未能解决你的问题,请参考以下文章

python Python - pickcle I / O.

ruby 文件I / O.

text 带有Colaboratory Jupyter笔记本的Google Drive文件I / O.

c_cpp CPP - 教程012 - 操作员重载和文件I / O.

markdown shell I / O.

java 控制台I / O.