导语:
本文主要介绍了关于python的replace函数怎么用的相关知识,包括python中pow函数,以及python中set函数这些编程知识,希望对大家有参考作用。
Python replace() 方法将字符串中的旧(旧字符串)替换为新的(新字符串)。如果指定了第三个参数 max,则替换不会超过 max 次。
replace()方法语法:
str.replace(old, new[, max])
参数
old -- 将被替换的子字符串。
new -- 新字符串,用于替换old子字符串。
max -- 可选字符串, 替换不超过 max 次
返回值
返回通过用新的(新字符串)替换字符串中的旧(旧字符串)生成的新字符串。如果指定了第三个参数 max,则替换不会超过 max 次。
以下实例展示了replace()函数的使用方法:
str = "this is string example....wow!!! this is really string";
print str.replace("is", "was");
print str.replace("is", "was", 3);
输出结果
thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在python中使用条件语句?11/04
- ♥ 如何在 mac 上恢复 python11/30
- ♥ pycharm和python3输出表哪个好用?11/14
- ♥ 7个最佳的学习Python编程的开源库01/14
- ♥ 如何在python中计算不同类型的变量12/31
- ♥ python如何表示平方根运算09/01
内容反馈