其他分享
首页 > 其他分享> > 加str()函数可避免类型错误问题

加str()函数可避免类型错误问题

作者:互联网

print(‘今晚,我邀请了’+len(names)+‘位嘉宾’)
Traceback (most recent call last):
File “<pyshell#197>”, line 1, in
print(‘今晚,我邀请了’+len(names)+‘位嘉宾’)
TypeError: can only concatenate str (not “int”) to str

print(‘今晚,我邀请了’+str(len(names))+‘位嘉宾’)
今晚,我邀请了0位嘉宾

注:加str()函数可避免类型错误问题

标签:今晚,函数,错误,嘉宾,len,names,str,print
来源: https://blog.csdn.net/weilianlongxia/article/details/101226984