更改字符串部分
a = 'hello word 123'
import re
b = re.compile('word').sub('python', a)
print(b)
更改字符串部分
a = 'hello word 123'
import re
b = re.compile('word').sub('python', a)
print(b)
本文标题:python 字符串
本文链接:https://www.haomeiwen.com/subject/gsyamhtx.html
网友评论