我是靠谱客的博主 朴素书包,最近开发中收集的这篇文章主要介绍python中readtext_read content in a text file in python,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

** 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中readtext_read content in a text file in python的全部内容,希望文章能够帮你解决python中readtext_read content in a text file in python所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部