python数据类型转换(str跟int的转换)
20221220
数字转为字符串:
str(num)
任何形式的转换也都符合这种公式:
数据类型(需要转换的数据)
在python中:
字符串str转换成int: int_value = int(str_value)
int转换成字符串str: str_value = str(int_value)
int -> unicode: unicode(int_value)
unicode -> int: int(unicode_value)
str -> unicode: unicode(str_value)
unicode -> str: str(unicode_value)
int -> str: str(int_value)
str -> int: int(str_value)
参考:
[1] Python学习笔记一:数据类型转换 http://www.cnblogs.com/dabiao/archive/2010/03/07/1680096.html
[2] python数据类型转换(str跟int的转换) https://blog.csdn.net/shanliangliuxing/article/details/7920400