python 蟒蛇字符串操作

Posted

tags:

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


# 移除字符串头尾指定的字符
str = "123abcrunoob321"
print (str.strip( '12' ))  # 字符序列为 12

#输出
#3abcrunoob3

#常用 strip("\n") 去除文件首尾的换行符

# 替换字符串
s = "Enter string"
s.replace(" ","+")
# Out[147]: 'Enter+string'

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

python 蟒蛇操作数据库

python 蟒蛇时间操作

python 蟒蛇操作的Redis

python 蟒蛇日期操作

python 蟒蛇操作的MySQL数据库

python 如何在Python中中断长时间运行的操作。 #蟒蛇