67193114 发表于 2022-3-30 20:46:14

新人求助!

import os
key_word = '明天'
path = os.getcwd()
list_files = []
list_temp = []


def find_txt_file(path):
    os.chdir(path)
   
    for each_file in os.listdir(os.curdir):
      if os.path.isdir(each_file):
            find_txt_file(each_file)
            os.chdir(os.pardir)
      else:
            if os.path.splitext(each_file) in ['.txt','.TXT']:
                list_temp.append(os.getcwd()+'\\'+each_file)
    for each in list_temp:
      print(each)

请教各位老师,上述代码中是为了实现在一个文件夹以及子文件夹中查找出txt文件
可是为什么在程序中执行打印list_temp列表的结果是:

D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\something.txt
D:\Python\Python38\temp\L30\temp.txt

而定义完函数,调用执行时list_temp的结果却是
D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\something.txt
D:\Python\Python38\temp\L30\temp.txt

实在查不出原因,请大神指点!感谢!

ba21 发表于 2022-3-30 20:53:51

print的位置你总要指出来吧。靠瞎猜?

67193114 发表于 2022-3-30 21:09:57

ba21 发表于 2022-3-30 20:53
print的位置你总要指出来吧。靠瞎猜?

代码最后不就是print的位置吗?

67193114 发表于 2022-3-30 21:11:27

在函数定义过程中print的结果是4行
定义结束后,再调用函数。list_temp的结果就是三行

67193114 发表于 2022-3-30 21:16:07

>>> find_txt_file(path)
D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\something.txt
D:\Python\Python38\temp\L30\temp.txt

>>> list_temp
['D:\\Python\\Python38\\temp\\L30\\1\\record.txt', 'D:\\Python\\Python38\\temp\\L30\\something.txt', 'D:\\Python\\Python38\\temp\\L30\\temp.txt']
>>>

ba21 发表于 2022-3-30 21:23:15

67193114 发表于 2022-3-30 21:16
>>> find_txt_file(path)
D:\Python\Python38\temp\L30\1\record.txt
D:\Python\Python38\temp\L30\1\rec ...

    for each in list_temp:
      print(each)

写到函数外面不就可以了。
递归函数里面,你这样print怎么可能会是你想要的?用你现在的代码,你换个层次多的目录,你看能打出多少重复的。
页: [1]
查看完整版本: 新人求助!