python 字符串
Posted 华北业余选手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 字符串相关的知识,希望对你有一定的参考价值。
test_str = "hello python" # 查找字符串 temp = test_str.find("llo") print(temp) # 替换字符串(不会改变原来的字符串) temp2 = test_str.replace("python", "php") print(temp2)
test_str = " hello python " # 去掉两侧空格 temp = test_str.strip() print(temp)
test_str = "hello python php go" # 拆分字符串 temp = test_str.split() print(temp) # 合并字符串 temp2 = "*".join(temp) print(temp2)
以上是关于python 字符串的主要内容,如果未能解决你的问题,请参考以下文章