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)

 

 

字符串的常用操作

1) 判断类型 - 9

 

 

2) 查找和替换 - 7

 

 

3) 大小写转换 - 5

 

 

4) 文本对齐 - 3

 

 

5) 去除空白字符 - 3

 

 

6) 拆分和连接 - 5

 

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

Python中verbaim标签使用详解

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档