str,是什么意思?有什么作用?用在哪里?
读者您好:
使用str()函数,可以将非字符串类型转换成字符串。避免因为类型不匹配导致错误。例如下面的情况
a=20000909print('出生日期为:'+a)
会出现类型错误:TypeError: can only concatenate str (not "int") to str
此时需要使用str()函数将出生日期转换为字符串,代码如下:
print('出生日期为:'+str(a))
输出结果为:出生日期为:20000909
淡.印象 发表于2020-04-09 08:26
谢谢老师