gpt4 book ai didi

python-3.x - docx 模块 : UserWarning: style lookup by style_id is deprecated. 改用样式名称作为键。

转载 作者:行者123 更新时间:2023-12-04 16:46:49 26 4
gpt4 key购买 nike

我在这里运行一个代码:

import docx, os
os.chdir('C:\\PythonScripts')
doc = docx.Document()
doc.add_paragraph('Hello World!')
doc.paragraphs[0].style = 'Heading6'
doc.save('test.docx')

我在标题中得到了那个警告。该脚本仍然有效,但我认为我在最新更新中做了一些过时的事情。我该如何正确地做到这一点?

最佳答案

你可以改变你的

doc.paragraphs[0].style = 'Heading6'


doc.paragraphs[0].style = 'Heading 6'

它会工作得很好。

关于python-3.x - docx 模块 : UserWarning: style lookup by style_id is deprecated. 改用样式名称作为键。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47554131/

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