read text file in python
程序员文章站
2022-10-19 17:19:52
** read text file in pythoncapability: reading =text= from a text file 1. open the IDLE text editor >>> idle32. declare a *string* variable that holds ......
** read text file in python
capability: reading =text= from a text file
1. open the idle text editor
>>> idle3
2. declare a *string* variable that holds *the path to the text file*, =test.txt=
>>> strpath="/home/kaiming/documents/python/text/text.dat"
3. open the file using the =open()= function
>>> f=open(strpath)
4. read the contents of the file using the =read()= function
>>> strtext=f.read()
5. print out the contents of the file
>>> print(strtext)
refer to
https://docs.python.org/2/tutorial/inputoutput.html
上一篇: 这样子不太文明了吧!
下一篇: 打印进度条
推荐阅读
-
使用python读取.text文件特定行的数据方法
-
Python 文件操作技巧(File operation) 实例代码分析
-
linux使用cp报错 Text file busy
-
Linux下执行程序出现 Text file busy 提示时的解决方法
-
linux系统更新正在运行进程的可执行文件需要注意的text file busy的原因及解决方法
-
Python File(文件) 方法整理
-
Python判断对象是否为文件对象(file object)的三种方法示例
-
Python转换HTML到Text纯文本的方法
-
WAC启动Android模拟器 transfer error: Read-only file system错误解决方法
-
使用python读取.text文件特定行的数据方法