美文网首页
2019-09-02 Python的openpyxl遇到Depr

2019-09-02 Python的openpyxl遇到Depr

作者: Shalom小白 | 来源:发表于2019-09-29 08:33 被阅读0次

    在调用openpyxl时,出现Warning:

    DeprecationWarning: Call to deprecated function get_sheet_by_name (Use wb[sheetname])
    

    代码行为:

    sheet = wc.get_sheet_by_name('Sheet')
    

    解决方案:代码行改为

    sheet = wc["Sheet"]
    

    参考

    相关文章

      网友评论

          本文标题:2019-09-02 Python的openpyxl遇到Depr

          本文链接:https://www.haomeiwen.com/subject/xrgqyctx.html