TypeError: listdir: path should be string, bytes, os.PathLike or None, not tuple
时间: 2023-05-19 08:03:43 浏览: 1014
TypeError: int() argument must be a string, a bytes-like object or a number, not ‘tuple’
5星 · 资源好评率100%
这个错误提示表明 listdir 函数的参数类型应该是字符串、字节、os.PathLike 或者 None,而不是元组。可能是你在调用 listdir 函数时传入了一个元组作为参数,需要将其转换为字符串或者其他支持的类型。请检查你的代码并修复这个问题。
阅读全文