【发布时间】:2023-04-02 22:37:01
【问题描述】:
我有一个 python 代码,它使用驱动器和工作表 api 来列出文件夹内的文件。我在这个文件夹中有多个谷歌表格,其中一些在文本之间有空格,就像图像中给出的那样。我想使用google sheet api将所有单元格的文本换行更改为溢出,即python中的工作表对象。我可以看到有一种方法(wrap_strategy)可以将其设置为overflow_cell,但我不知道如何使用它。在这种情况下有人可以帮忙吗?
我可以在应用程序脚本中看到文档,但不能使用 python。
def process_file(file):
file["name"] = file["name"] + '.' + file["id"] #prefix the file name
print(file["name"])
sheet = open_sheet(file['id'])
if sheet is None:
print("Unable to open sheet: " + file['id'])
return
实际结果会将此文件夹内的所有 google 表格格式化为所有单元格的溢出文本格式
【问题讨论】:
标签:
python
google-sheets
google-sheets-api
gspread
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:如何在 python 中将 wrap_strategy 用于谷歌表格? - Python技术站