gpt4 book ai didi

python - 将文件读入字符串(python)

转载 作者:太空宇宙 更新时间:2023-11-04 02:55:05 25 4
gpt4 key购买 nike

我刚刚将 Anaconda 安装到 Windows 10 机器上(Python 2.7.12 |Anaconda 4.2.0(64 位)|)我在从文件中读取文本时遇到问题。请参阅下面的代码和输出。我想要文件中的实际文本。

谢谢!!

输出:

 ['\xff\xfeT\x00h\x00i\x00s\x00',
'\x00i\x00s\x00',
'\x00a\x00',
'\x00t\x00e\x00s\x00t\x00.\x00',
'\x00',
'\x00',
'\x00',
'\x00T\x00h\x00i\x00s\x00',
'\x00i\x00s\x00',
'\x00a\x00',
'\x00t\x00e\x00s\x00t\x00']

代码:

try:    
with open('test.txt', 'r') as f:
text = f.read()
except Exception as e:
print e
print text.split()

测试.txt:

This is a test.

This is a test

最佳答案

我非常幸运地使用 io 模块打开带有显式编码的文件。

import io
with io.open(FILE, 'r', encoding='utf-16') as f:
job = f.read()

关于python - 将文件读入字符串(python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42637192/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com