首页 > 代码库 > Python Replace

Python Replace

#Method about Replace#
ainfo = "I love Python!"
replycontent = ainfo.replace(‘Python‘,‘php‘)
print (replycontent);

本文出自 “百草素心” 博客,请务必保留此出处http://suxin.blog.51cto.com/535505/1871522

Python Replace