python读入文件
‘壹’ python 读取文件,怎么打开
我们需要新建一个文本文档,这个文档可以是windox自带的记事本;
‘贰’ 如何读取python的.py文件
你说的环境变量其实是系统的环境变量,
进入python后,还要配置python自己的环境变量。
首先,你应该进入C:Usersqc后,再启动python
cdC:Usersqc
python
>>>importex25
如果从其它地方进入python:
CMD进入python后,要加入路径:
>>>importsys
>>>sys.path.insert(0,"C:\Users\qc")
>>>importex25
‘叁’ Python读取文件内容的方法有几种
filename=open('i:\\install\\test.txt','r+')#读取xx路径xx文件;r+代表的是读写并存方式 print filename.read()#读取所有的文件
‘肆’ python读取文件
‘伍’ 怎么读取整个文件 python
Python 读写文本文件
首先需要注意的是,txt文件是具有字符编码的,不同的txt字符编码可能不同。具体是什么编码,可以用 notepad++ 等文本编辑器查看。
读取文件建议使用 with...as... 结构,可以自动关闭文件。
with open("text.txt", "r") as f:
text = f.read()
print(text)
如果不用 with...as... 则必须手动关闭文件:
f = open("text.txt", "r")
text = f.read()
f.close()
print(text)
如果读取的文件含有中文,使用内置的open可能会报错,这个时候要用到codecs模块:
import codecs
with codecs.open("text.txt", "r", encoding="utf-8") as f:
text = f.read()
print(text)
(假设 text.txt 是 utf-8 编码)
‘陆’ python 怎么完整的读取文件
file=open("a.txt")
s=file.read()
print(s)
‘柒’ Python如何读写文本文件
1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。
file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
注:不能把open语句放在try块里,因为当打开文件出现异常时,文件对象file_object无法执行close()方法。
2.读文件读文本文件input = open('data', 'r')
#第二个参数默认为r
input = open('data')
读二进制文件input = open('data', 'rb')
读取所有内容file_object = open('thefile.txt')
try:
all_the_text = file_object.read( )
finally:
file_object.close( )
读固定字节file_object = open('abinfile', 'rb')
try:
while True:
chunk = file_object.read(100)
if not chunk:
break
do_something_with(chunk)
finally:
file_object.close( )
读每行list_of_all_the_lines = file_object.readlines( )
如果文件是文本文件,还可以直接遍历文件对象获取每行:
for line in file_object:
process line
3.写文件写文本文件output = open('data.txt', 'w')
写二进制文件output = open('data.txt', 'wb')
追加写文件output = open('data.txt', 'a')
output .write("\n都有是好人")
output .close( )
写数据file_object = open('thefile.txt', 'w')
file_object.write(all_the_text)
file_object.close( )
‘捌’ python读取文件内容
fname = raw_input('input filename:')
with open(fname,'r') as f:
for i in f:
print i
这样试试呢?
你的代码本身看是没问题的呢!
‘玖’ Python读取文件为多个列表
你把你的txt文件内容贴出来看看
‘拾’ python怎么读取文件夹内容
#encoding:utf-8
importos
#设置文件夹所在路径,我这里设置哦当前路径
path='./'
#列出路径下所有的一级目录+文件
files=os.listdir(path)
printfiles
#利用递归,列出目录下包括子目录所有的文件及文件夹(但是没有分级,如果需要分级,自己写吧)
files1=[]
deflistfiles(path):
foriinos.listdir(path):
ifos.path.isdir(path+i):
files1.append(i)
listfiles(path+i)
else:
files1.append(i)
listfiles(path)
printfiles1