如何訪問Python的字符串常量?Python字符串常量
我需要得到標點符號的Python文檔說列表是string.punctuation
這將無法正常工作
''.punctuation
''.get_value("punctuation")
是什麼,我想甚至可能嗎?
如何訪問Python的字符串常量?Python字符串常量
我需要得到標點符號的Python文檔說列表是string.punctuation
這將無法正常工作
''.punctuation
''.get_value("punctuation")
是什麼,我想甚至可能嗎?
string
在string.punctuation
是不是指型str
,而是一個string module:
In [32]: import string
In [33]: string.punctuation
Out[33]: '!"#$%&\'()*+,-./:;<=>[email protected][\\]^_`{|}~'
像這樣:
>>> import string
>>> string
<module 'string' from '/usr/lib/python2.7/string.pyc'>
>>> string.punctuation
'!"#$%&\'()*+,-./:;<=>[email protected][\\]^_`{|}~'
這些模塊中的變量,所以你並不需要一個實例使用模塊名稱。其他人的注意事項我假設問題中提到的python文檔是here
import string
print(string.punctuation)
給
!"#$%&'()*+,-./:;<=>[email protected][\]^_`{|}~
@PrincessOftheUniverse你-1這是因爲一個糟糕的標題?那麼爲什麼不編輯它呢。 – TerryA 2013-03-23 07:48:21