如何在Python中将任何数据类型更改为字符串? 最佳答案 myvariable = 4 mystring = str(myvariable) # '4' 另外,也可以尝试repr:mystring = repr(myvariable) # '4' 这在python中称为“转换”,非常普遍。