美文网首页
python数据类型转换(str跟int的转换)

python数据类型转换(str跟int的转换)

作者: siro刹那 | 来源:发表于2017-05-18 09:37 被阅读634次

    转自:http://blog.csdn.net/shanliangliuxing/article/details/7920400
    因为PythonJava在数据类型转换方面语法不同,所以总是搞混,特此记录下来,方便查阅:
    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)
    java中:
    字符串String转换成int: int_value = String.parseInt(string_value)或(int)string_value
    int转换成字符串String: string_value = (String)int_value

    相关文章

      网友评论

          本文标题:python数据类型转换(str跟int的转换)

          本文链接:https://www.haomeiwen.com/subject/sxtsxxtx.html