问题描述
我是 Python 的新手.我必须使用 Reportlab 在我的 pdf 文档中创建一个有序列表.我在 中找到了这两个类 ListFlowable(), ListItem()Reportlab 的用户指南来做同样的事情.但是这些类的第一个导入语句不起作用.
I am a newbie to python. I have to create an ordered list in my pdf document using Reportlab. I found these two classes ListFlowable(), ListItem() in the user-guide of Reportlab to do the same. But the very first import statement for these classes is not working.
从 reportlab.platypus 导入 ListFlowable, ListItem
这个语句给了我以下错误:
This statement gives me the following error:
导入错误:无法导入名称 ListFlowable
ImportError: cannot import name ListFlowable
我如何使用这些类?我使用的是 python 2.6,reportlab 2.5.
How can I use these classes?I am using python 2.6, reportlab 2.5.
推荐答案
在我安装的 ReportLab 2.5 中,这不可用.我看到它在文档中,但是通过代码搜索没有 ListFlowable 或 ListItem 这样的东西.这可能仅适用于 ReportLab 的封闭源代码部分,而不适用于开放源代码.
In my install of ReportLab 2.5 this isn't available. I see it's there in the documentation, but searching through the code there is no such thing as a ListFlowable or ListItem. This might be something that's only available in the closed-source portion of ReportLab and not the open source.
不过,如果您需要制作列表,您可以使用迭代器变量和段落样式很容易地获得类似的结果.我一直都是这样做的.
If you need to make lists, though, you can fairly easily get similar results using iterator variables and paragraph styles. That's the way I've always done it.
这篇关于从 reportlab.platypus 导入 ListFlowable,ListItem 不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!