为了账号安全,请及时绑定邮箱和手机立即绑定

type('s')结果就是<class 'str'>这个,为什么输出错误

print(type('s'))
if type('s')==<class 'str'>:
    print(1)
else:
    print(2)http://img1.sycdn.imooc.com//620754e100010f8107460456.jpg

正在回答

1 回答

 type() 函数的作用是用来查询变量所指的对象类型,返回值是对象类型,而python3中支持6个标准数据类型,分别是:Number(数字)、String(字符串)、List(列表)、Tuple(元组)、Set(集合)、Dictionary(字典)。原代码if type('s')==<class 'str'>:这种写法就有问题,<class 'str'>并不是数据类型。可改为下方代码:

#print(type('s'))
if type('s')== str:
    print(1)
else:
    print(2)
1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

type('s')结果就是<class 'str'>这个,为什么输出错误

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信