微信小程序> 每天一个小程序—0011题(敏感词检测)

每天一个小程序—0011题(敏感词检测)

浏览量:411 时间: 来源:weixin_30364325

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

 

 1 #!/usr/bin/env python 2  3 filtered = [] 4  5 def get_filtered_words(): 6     f = open('test.txt') 7     for word in f.readlines(): 8         if '' in word: 9             filtered.append(word[:-1])10         else:11             filtered.append(word)12     print(filtered)13 14 def input_check():15     while True:16         text = input('请输入内容:')17         if text in filtered:18             print( 'Freedom')19         else:20             print('Human Rights')21 22 if __name__ == '__main__':23     get_filtered_words()24     input_check()

小程序

 

版权声明

即速应用倡导尊重与保护知识产权。如发现本站文章存在版权问题,烦请提供版权疑问、身份证明、版权证明、联系方式等发邮件至197452366@qq.com ,我们将及时处理。本站文章仅作分享交流用途,作者观点不等同于即速应用观点。用户与作者的任何交易与本站无关,请知悉。

产品经理

手机 : 13312967497

擅长 : 小程序流量变现

扫码领取礼包

热门模板

  • 头条
  • 搜狐
  • 微博
  • 百家
  • 一点资讯
  • 知乎