这行代码什么意思?[sort函数][Key参数]
def file_walker(path):file_list = []
for root, dirs, files in os.walk(path): # 生成器
for fn in files:s
p = str(root+'/'+fn)
file_list.append(p)
file_list.sort(key = lambda x: int(x))
print(file_list)
return file_list
这行红色的代码 看不懂 key后面接的东西的含义
key = lambda x: int(x)
这个函数的功能是把0.ts 1.ts 2.ts 3.ts ... 等文件读取到列表中 并且排序
def file_walker(path):
file_list = []
for root, dirs, files in os.walk(path): # 生成器
for fn in files:
p = str(root+'/'+fn)
file_list.append(p)
file_list.sort(key = lambda x: int(x))
print(file_list)
return file_list
本帖最后由 suchocolate 于 2021-4-24 19:26 编辑
列表方法sort:https://www.runoob.com/python3/python3-att-list-sort.html
匿名函数lambda:https://www.runoob.com/python/python-functions.htm key = lambda x: int(x))匿名函数lambda 对列表x切片处理后转换成字符串为key赋值
页:
[1]