20170513 Python练习册0011过滤敏感词

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20170513 Python练习册0011过滤敏感词相关的知识,希望对你有一定的参考价值。

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

# 第 0011 题: 敏感词文本文件 filtered_words.txt,里面的内容为以下内容,
# 当用户输入敏感词语时,则打印出 Freedom,否则打印出 Human Rights。
import re


def filted_word(filename):
word_list=[]#定义一个空列表
with open(filename,‘r‘) as f:#以读打开文件
for line in f:#以行为单位遍历文件
content = re.sub(r‘ ‘,‘‘,line)#替换掉空格符
word_list.append(content.strip())#以行为单位添加进列表
print(word_list)
return word_list
def filer(input_word,f_file):
if input_word in filted_word(f_file):#判断输入是否在列表中
print(‘Freedom‘)
else:
print(‘Human Right‘)
add = ‘F:\python\Python练习册\sensitivewords.txt‘
name = input(‘请输入词语:‘)#输入word
if __name__==‘__main__‘:
filer(name,add)
























以上是关于20170513 Python练习册0011过滤敏感词的主要内容,如果未能解决你的问题,请参考以下文章

20170513爬取猫眼电影Top100

python每日一练:0011题

PYTHON学习0011:enumerate()函数的用法----2019-6-8

[oeasy]python0011_ 字符序号_ordinal_ord

Python 语法练习题

python 小练习2