gpt4 book ai didi

python - 在没有扩展名的情况下在 Python 中读取文件

转载 作者:太空宇宙 更新时间:2023-11-04 09:19:00 24 4
gpt4 key购买 nike

我想在 Python 2.6 中读取没有扩展名的(基本上是文本文件)文件。我尝试了以下代码并出现以下错误..

for infile in glob.glob(os.path.join(path + "Bookmarks",'*')):
review_file = open(infile,'r').read()
print review_file

-> 全局名称 glob 未定义

f = open(path, "r")
text = f.readlines()
print text

-> 打印“x00\x00\x00\x00\x00\”等等,这不是这个文件里面的内容。

编辑:-> 文件的内容直接就是我想要的,例如,如果文件中有“023492034blackriver0brydonmccluskey”,它将(截至目前)用一堆二进制值提取它,而我只想要精确的内容。我该怎么做?

最佳答案

  1. 如果你想使用glob模块,你必须先import它:

    import glob
    for infile in glob.glob(os.path.join(path, '*')):
    review_file = open(infile,'r').read()
    print review_file
  2. 您确定您的文件不包含您正在获取的二进制数据吗?

关于python - 在没有扩展名的情况下在 Python 中读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5095642/

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