为什么不从reportlab.graphics.shapes导入字符串工作

时间:2016-02-13 02:46:28

标签: python-3.x reportlab

Python 3.4 reportlab 3.2.0

from reportlab.graphics.shapes import string

以前工作过。升级到更新的Python和reportlab,它不再有效。

是否更换,淘汰或移动了?

1 个答案:

答案 0 :(得分:0)

基于bitbucket上的source,问题只是您应该大写.fa-search { color: #2980b9; font-size: 30px; position: absolute; top: 7px; left: 8px; cursor: pointer; } .fa-times-circle { opacity: 0; color: #d9d9d9; font-size: 20px; position: absolute; top: 12px; right: 8px; transition: opacity 0.4s ease-out; cursor: pointer; } .search-input { position: absolute; cursor: default; left: 45px; top: 6px; width: 0; padding: 5px; border: none; outline: none; font-size: 18px; line-height: 20px; background-color: rgba(255, 255, 255, 0); transition: width 0.4s ease-out; } ,以便导入如下:

string

根据from reportlab.graphics.shapes import String

,应始终采用哪种方式
  

班级名称

     

类名通常应使用CapWords惯例。

     

在记录接口并主要用作可调用接口的情况下,可以使用函数的命名约定。

     

请注意,内置名称有一个单独的约定:大多数内置名称是单个单词(或两个单词一起运行),CapWords约定仅用于异常名称和内置常量。