我有一个名为test的文件夹,其中包含11.txt、12.txt、13.txt我需要读取测试文件夹的内容,找到最大的文本文件名并将其传递给 for 循环起始索引:def find_largest_index(file_path): txt_files = glob.glob("*.*") #do smthing here to find the largest filename index file_path = 'home/Documents/PythonCodeIsHere/test'i = find_largest_index(file_path)for page_i in pages_num[i-1:]: print(page_i)
1 回答
当年话下
TA贡献1890条经验 获得超9个赞
import os
filenames = [int(filename[:-4]) for filename in os.listdir(file_path) if ( filename.endswith('.txt') and not filename.startswith('running') )]
i = max(filenames)
添加回答
举报
0/150
提交
取消