python编程如何删除字符

Python中可以使用replace()方法删除指定字符。

Python replace() 方法把字符串中的 old(旧字符串) 替换成 new(新字符串),如果指定第三个参数max,则替换不超过 max 次。

replace()方法语法:

str.replace(old, new[, max])

参数

old — 将被替换的子字符串。

new — 新字符串,用于替换old子字符串。

max — 可选字符串, 替换不超过 max 次

示例:

s1 = input('s1:')
s2 = input('s2:')

for i in s1:
   if i in s2:
       s1 = s1.replace(i,'')

print(s1)

执行结果:

推荐学习:《Python教程》

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python编程如何删除字符