Python_debug

正文

记录日常debug中的一些常见问题吧

xlrd

  1. Excel xlsx file; not supported
    原因是版本过高,直接安装1.2.0就行

    1
    2
    pip uninstall xlsx
    pip install xlsx==1.2.0
  2. ‘ElementTree’ object has no attribute ‘getiterator’

    1
    2
    3
    import xlrd
    xlrd.xlsx.ensure_elementtree_imported(False, None)
    xlrd.xlsx.Element_has_iter = True

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!