第0012道练习题_Python文本查找替换

Python练习题第 0012 题

https://github.com/Show-Me-the-Code/show-me-the-code
第0012题:敏感词文本文件 filtered_words.txt,里面的内容 和 0011题一样,当用户输入敏感词语,则用 星号替换,例如当用户输入【北京是个好城市】,则变成【**是个好城市】
敏感词文件内容如下:
北京
程序员
公务员
领导
牛比
牛逼
你娘
你妈
love
sex
jiangge

可以只用str.replace,也可以用re.sub

Talk is cheap, show you my code.

#! /usr/bin/env python
#! -*- coding: utf-8 -*-

__author__ = 'Sophie'

import re

if __name__ == '__main__':
    file = open("/Users/Sophie/PycharmProjects/Practice_0012/key_word.txt","r")
    list_key_word =[]
    try:
        list_key_word = file.readlines()
    finally:
        file.close()
    for i in range(len(list_key_word)):
        list_key_word[i]=list_key_word[i].strip(" \n")
    while(True):
        userinput = raw_input("Please input something.\n")
        result = ""
        for x in list_key_word:
            #result = userinput.replace(x,"*")
            result = re.sub(x,"*",userinput)
            userinput = result
        print result
        continue_or_not = raw_input("Do you want continue? Please input y/n. Any other inputs will be taken as y.\n")
        if continue_or_not.lower() == 'n':
            break
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值