gpt4 book ai didi

python - Gspread 可以在位置插入新列吗?

转载 作者:太空宇宙 更新时间:2023-11-03 12:02:51 30 4
gpt4 key购买 nike

我正在尝试使用 Gspread 在某个位置插入新列。我找到了 add_cols 方法,但它只插入电子表格的最后一列。

还有其他方法,例如:insert_rowsresizeappend_rows 但都不能解决我的问题。我错过了什么吗?谢谢

最佳答案

为此使用默认的批量更新 API

spreadsheetId=''
sheetId=''

sht = gc.open_by_key(spreadsheetId)

requests = []

requests.append({
"insertDimension": {
"range": {
"sheetId": sheetId,
"dimension": "COLUMNS",
"startIndex": 2,
"endIndex": 4
},
"inheritFromBefore": True
}
})

body = {
'requests': requests
}

sht.batch_update(body)

关于python - Gspread 可以在位置插入新列吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43221821/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com