目的
测试一个对象是否是字符串
方法
python的字符串的基类是basestring,包括了str和unicode类型。一般可以采用以下方法:
代码如下:
def isastring(anobj):
return isinstance(anobj,basestring)
不过以上方法对于userstring类的实例,无能无力。
代码如下:
in [30]: b=userstring.userstring(‘abc’)
in [31]: isastring(b)
out[31]: false
in [32]: type(b)
out[32]:
python中常用的鸭子判断法:如果它走路像鸭子,叫声像鸭子,就可以认为它是鸭子了。
代码如下:
def isstringlike(anobj):
try:
anobj.lower() + anobj + ‘ ‘
except:
return false
else:
return true
测试结果如下:
代码如下:
>>> import userstring
>>> b=userstring.userstring(‘abc’)
>>> isstringlike(b)
true
>>>
关于风格
根据自己的语气去执行任务,在此过程中检测并处理由于不匹配产生的所有错误和异常。这种处理方式称为:
代码如下:
eafp:it’s easier to ask forgiveness than permission.
try/except是保证该风格的关键工具。
八卦一下,关于userstring类
对于2.x版本:python文档中提到,如果不涉及到2.2以前的版本,请考虑直接使用str类型来代替userstring类型。
对于3.x版本:该模块已经移到collection模块中。
该类主要有两种方法:
代码如下:
class userstring.userstring([sequence])
具体使用前面已经举例,注意可以使用str()转化为str类型
代码如下:
class userstring.mutablestring([sequence])
字符串也可以变哦!look here:
代码如下:
a=userstring.mutablestring(‘abc’)
a[0]=’c’
in [10]: a
out[10]: ‘cbc’
python文档上有行黑体字,原来已经是弃用的方法,3.0就没有了:
代码如下:
deprecated since version 2.6: the mutablestring class has been removed in python 3.0.