代码之家  ›  专栏  ›  技术社区  ›  Tikhon

Python DataFrame ExcelWriter,返回错误

  •  0
  • Tikhon  · 技术社区  · 4 年前

    with ExcelWriter('C:\\Users\Tiki\Desktop\work\VFT Technicals\Production2\dashboard_v2.xlsx') as writer: 
        output_rsi.to_excel(writer,sheet_name='rsi')
    

    这将返回错误:

    NameError: name 'ExcelWriter' is not defined
    

    希望得到一些建议,我是一个编程初学者。

    提前谢谢。

    1 回复  |  直到 4 年前
        1
  •  2
  •   Jaydeep Devda    4 年前

    你的剧本不被认出来 'ExcelWriter' 关键字。 你应该写下面的事情来解决它。

    请尝试:

    import pandas as pd 和使用

    with pd.ExcelWriter('C:\\Users\Tiki\Desktop\work\VFT Technicals\Production2\dashboard_v2.xlsx') as writer: 
        output_rsi.to_excel(writer,sheet_name='rsi')
    

    import pandas.ExcelWriter as ExcelWriter