第4月第20天 python re
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第4月第20天 python re相关的知识,希望对你有一定的参考价值。
1.
import re replace_values = [‘one‘, ‘two‘, ‘three‘] replace_keys = [str(i) for i in xrange(1, 4)] replace_dict = dict(zip(replace_keys, replace_values)) def replace(match): return replace_dict[match.group(0)] string = ‘1 adfa fa 2 fafsa 3 adfaf‘ print re.sub(r‘(^|\b)[1-3]($|\b)‘, replace, string) 作者:孙竟 链接:https://www.zhihu.com/question/36596275/answer/68175650 来源:知乎 著作权归作者所有,转载请联系作者获得授权。
https://www.zhihu.com/question/36596275
以上是关于第4月第20天 python re的主要内容,如果未能解决你的问题,请参考以下文章