python中os.walk()和for循环嵌套时,必须为for配置3个变量吗?
for a, b, c in os.walk(path)
收起
你也可以丢弃任意一个或几个用"_"代替,比如for _, b, c in os.walk(path)
报告相同问题?