python里的字符串是一种数据类型
可以使用str函数将其他数据类型,转换之后就是字符串类型了
示例如下:
a = 10 print(type(a)) a = str(a) print(type(a))
执行结果如下:
更多Python知识,请关注:!!