在python3中运行python2写的代码
出现了报错
TypeError: slice indices must be integers or None or have an __index__ method
imgs[5+5*(i%n_rows)+width*(i%n_rows):5+5*(i%n_rows)+width+width*(i%n_rows), 5+5*(i/n_rows)+height*(i/n_rows):5+5*(i/n_rows)+height+height*(i/n_rows)] = check_imgs[i]
上述代码中将/变成//,错误解决。