<i id='o45Ff'><tr id='o45Ff'><dt id='o45Ff'><q id='o45Ff'><span id='o45Ff'><b id='o45Ff'><form id='o45Ff'><ins id='o45Ff'></ins><ul id='o45Ff'></ul><sub id='o45Ff'></sub></form><legend id='o45Ff'></legend><bdo id='o45Ff'><pre id='o45Ff'><center id='o45Ff'></center></pre></bdo></b><th id='o45Ff'></th></span></q></dt></tr></i><div id='o45Ff'><tfoot id='o45Ff'></tfoot><dl id='o45Ff'><fieldset id='o45Ff'></fieldset></dl></div>
<legend id='o45Ff'><style id='o45Ff'><dir id='o45Ff'><q id='o45Ff'></q></dir></style></legend>

  • <small id='o45Ff'></small><noframes id='o45Ff'>

        • <bdo id='o45Ff'></bdo><ul id='o45Ff'></ul>
        <tfoot id='o45Ff'></tfoot>

      1. 在python中的另一个文件中查找一个文本文件的条目

        Find entries of one text file in another file in python(在python中的另一个文件中查找一个文本文件的条目)
        <tfoot id='meaeX'></tfoot>
      2. <legend id='meaeX'><style id='meaeX'><dir id='meaeX'><q id='meaeX'></q></dir></style></legend>

          <tbody id='meaeX'></tbody>
        • <bdo id='meaeX'></bdo><ul id='meaeX'></ul>

          1. <small id='meaeX'></small><noframes id='meaeX'>

                  <i id='meaeX'><tr id='meaeX'><dt id='meaeX'><q id='meaeX'><span id='meaeX'><b id='meaeX'><form id='meaeX'><ins id='meaeX'></ins><ul id='meaeX'></ul><sub id='meaeX'></sub></form><legend id='meaeX'></legend><bdo id='meaeX'><pre id='meaeX'><center id='meaeX'></center></pre></bdo></b><th id='meaeX'></th></span></q></dt></tr></i><div id='meaeX'><tfoot id='meaeX'></tfoot><dl id='meaeX'><fieldset id='meaeX'></fieldset></dl></div>
                  本文介绍了在python中的另一个文件中查找一个文本文件的条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我有两个文件.文件 A 的每一行都有一些条目,我需要查找文件 B 中是否有任何条目.这是我的脚本(使用两个函数):

                  I have two files. File A has some entries in each line and I need to find if any entry is found in File B. Here is my script (using two functions):

                  def readB(x):
                   with open('B.txt') as resultFile:
                      for line in resultFile:
                          if x in line:
                              print x
                  
                  
                  def readA():
                   with open('A.txt') as bondNumberFile:
                      for line in bondNumberFile:
                          readB(line)
                  
                  readA()
                  

                  此脚本在第二个文件中找到第一个条目,然后找不到下一个.这里可能有什么问题?

                  This script finds the first entry in second file and then does not finds the next one. What might be wrong here?

                  文件 A 如下所示:

                  122323 
                  812549
                  232335
                  921020
                  

                  文件 B 看起来像这样:

                  and File B looks like this:

                  696798  727832  750478  784201  812549  838916  870906  890988  921020  
                  697506  727874  751037  784955  813096  838978  872494  891368  921789  
                  696798  727832  750478  784201  812549  838916  870906  890988  921020  
                  697506  727874  751037  784955  813096  838978  872494  891368  921789  
                  

                  推荐答案

                  去除换行符

                  Python 在您读取行时包含换行符 - 您的第一个条目被读取为 1223232 .去掉换行符就可以了.

                  Strip the entries of newlines

                  Python includes newlines when you read lines - your first entry is read as 1223232 . Strip the newline and it will work.

                  def readA():
                      with open('A.txt') as bondNumberFile:
                          for line in bondNumberFile:
                              readB(line.rstrip())
                  

                  这篇关于在python中的另一个文件中查找一个文本文件的条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  What happens when you compare 2 pandas Series(当你比较 2 个 pandas 系列时会发生什么)
                  Quickly find differences between two large text files(快速查找两个大文本文件之间的差异)
                  Python - Compare 2 files and output differences(Python - 比较 2 个文件和输出差异)
                  Why do comparisions between very large float values fail in python?(为什么在 python 中非常大的浮点值之间的比较会失败?)
                  Dictionary merge by updating but not overwriting if value exists(字典通过更新合并,但如果值存在则不覆盖)
                  removing an instance of an object in python list(删除python列表中的对象实例)

                    <tbody id='Io45E'></tbody>

                          • <bdo id='Io45E'></bdo><ul id='Io45E'></ul>

                          • <tfoot id='Io45E'></tfoot>

                            <legend id='Io45E'><style id='Io45E'><dir id='Io45E'><q id='Io45E'></q></dir></style></legend>

                            <small id='Io45E'></small><noframes id='Io45E'>

                            <i id='Io45E'><tr id='Io45E'><dt id='Io45E'><q id='Io45E'><span id='Io45E'><b id='Io45E'><form id='Io45E'><ins id='Io45E'></ins><ul id='Io45E'></ul><sub id='Io45E'></sub></form><legend id='Io45E'></legend><bdo id='Io45E'><pre id='Io45E'><center id='Io45E'></center></pre></bdo></b><th id='Io45E'></th></span></q></dt></tr></i><div id='Io45E'><tfoot id='Io45E'></tfoot><dl id='Io45E'><fieldset id='Io45E'></fieldset></dl></div>