python字符串

Posted mitsuhide1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python字符串相关的知识,希望对你有一定的参考价值。

字符串和其他类型转换

功能函数
字符串str转换成intint_value = int(str_value)
int转换成字符串strstr_value = str(int_value)
int -> unicodeunicode(int_value)
unicode -> intint(unicode_value)
str -> unicodeunicode(str_value)
unicode -> strstr(unicode_value)
int -> strstr(int_value)
str -> intint(str_value)

替换

a = 'hello word'
a.replace('word','python')

输出的结果是hello python

分割

print a.split('|')

以上是关于python字符串的主要内容,如果未能解决你的问题,请参考以下文章

Python学习 Day5 Python3 字符串

python008 Python3 字符串

Python字符串

Python 字符串

Python --------字符串

Python 字符串