Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 python 代码将数据从 excel 导入到 google 表格。每次我运行脚本之前更新的记录都会覆盖写入。请帮助我如何保留以前添加的值并仅添加新值。
您只需要使用 openpyxl 来修改现有的 excel。任何其他包,如 xlwt xlsxwritter 只能写入一个新文件,我很惊讶它不会在您尝试写入现有文件时引发错误。如果您使用的是 pandas,请尝试搜索 openpyxl 页面以将其嵌入到 pandas 中。