python语言 接收键盘输入的一段英文,比如“hello world python”,删除字符串中的所有元音字母(使用或不使用 replace() 函数)

【1】不使用replace函数:
def remove_vowels(input_string):
    
    vowels = set('aeiouAEIOU')# 定义元音字母集合
    
    return ''.join([char for char in input_string if char not in vowels])# 使用列表推导式删除元音字母
    
# 接收键盘输入
input_string = input("Please enter a string: ")
result = remove_vowels(input_string)
print(result)

【2】使用replace函数:

string = input()

new_string = string.replace('a','').replace('e', '').replace('i', '').replace('o', '').replace('u', '').replace('A',
                                                                                                       '').replace(
        'E', '').replace('I', '').replace('O', '').replace('U', '')
print(new_string)

结果显示:

综合以上代码看出在需要替换多次的情况时,直接使用replace()函数代码较为冗长

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值