python怎么判断是否为字符

python

python中,判断某变量的数据类型是否为字符串,可用isinstance()函数,也可通过比较 type(x) == type(‘a’)的值来判断。

A = 123

B = [123.'A']

C = {'A':123,'B':45}

D = 1.23

E = 'abc'

isinstance(A, int)    #True

isinstance(B, list)   #True

isinstance(C, dict)   #True

isinstance(D, float)  #True

isinstance(E, str)    #True

type(A)== type(1)     #True

type(B)== type([])    #True

推荐学习《python教程》。

以上是 python怎么判断是否为字符 的全部内容, 来源链接: utcz.com/z/521550.html

回到顶部