当前位置: 移动技术网 > IT编程>脚本编程>Python > read text file in python

read text file in python

2019年01月18日  | 移动技术网IT编程  | 我要评论

免费拨打电话,环保勇士,神仙道炎石

** 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

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网