摘要: 一、python字符串替换可以用两种方法实现: 1.用字符串本身的方法 2.用正则来替换字符串 下面用个例子来实验: a = 'hello word' 我把a字符串里的word替换为python 1.用字符串本身的replace方法 a.replace('word' , 'python') 输出结果 阅读全文
posted @ 2022-03-17 22:20 Jacob高 阅读(95008) 评论(0) 推荐(1) 编辑