标签: python glob
我尝试运行使用glob()函数的脚本,但它给了我这个错误:
imagePatches = glob('/kaggle/input/IDC_regular_ps50_idx5/**/*.png', recursive=True)
TypeError: glob() got an unexpected keyword argument 'recursive'
我使用python2.7
答案 0 :(得分:1)
对**和recursive参数的支持仅为added in Python 3.5。
**
recursive
Python 2 version of glob仅接受一个参数。
glob