Home  >  Article  >  Backend Development  >  Python检测一个对象是否为字符串类的方法

Python检测一个对象是否为字符串类的方法

WBOY
WBOYOriginal
2016-06-06 11:17:261140browse

目的

  测试一个对象是否是字符串

方法

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn