为什么不
import string;help(string.title)
似乎有效,但
help(string.strip)
工作正常吗?
我收到错误
追踪(最近的呼叫最后):
文件“”,第1行,in AttributeError:'module'对象没有 属性'title'
答案 0 :(得分:2)
title
是类型为str
的对象的方法,而不是string
模块中的函数。这意味着您可以"foo".title()
或str.title("foo")
但不能string.title("foo")
。
答案 1 :(得分:1)
help(str.title)
似乎工作正常。