PHP前端开发

python怎么读取文本文件

百变鹏仔 2小时前 #Python
文章标签 文本文件

python怎么读取文本文件?

文件的读取

步骤:打开 -- 读取 -- 关闭

>>> f = open('/tmp/test.txt')>>> f.read()'hello python!hello world!'>>> f.close()