glob()得到了意外的关键字参数'recursive'

时间:2019-05-12 22:21:30

标签: python glob

我尝试运行使用glob()函数的脚本,但它给了我这个错误:

imagePatches = glob('/kaggle/input/IDC_regular_ps50_idx5/**/*.png', recursive=True)
TypeError: glob() got an unexpected keyword argument 'recursive'

我使用python2.7

1 个答案:

答案 0 :(得分:1)

**recursive参数的支持仅为added in Python 3.5

Python 2 version of glob仅接受一个参数。