博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python replace函数不起作用的坑
阅读量:5235 次
发布时间:2019-06-14

本文共 380 字,大约阅读时间需要 1 分钟。

字符串的替换函数replace有一个坑,

a = "123456"

a.replace("6","7")

print a

结果还是"123456"

看看replace函数的介绍,

Return a copy of string S with all occurrences of substring old replaced by new.  If the optional argument count is given, only the first count occurrences are replaced. 替换之后原来是返回一个新的copy,正确的做法是:

a = "123456"

b = a.replace("6","7")

print b

转载于:https://www.cnblogs.com/liangzp/p/8135557.html

你可能感兴趣的文章
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
discuz 常用脚本格式化数据
查看>>
洛谷P2777
查看>>
PHPStorm2017设置字体与设置浏览器访问
查看>>
SQL查询总结 - wanglei
查看>>
安装cocoa pods时出现Operation not permitted - /usr/bin/xcodeproj的问题
查看>>
GIT笔记:将项目发布到码云
查看>>
JavaScript:学习笔记(7)——VAR、LET、CONST三种变量声明的区别
查看>>
JavaScript 鸭子模型
查看>>