Python小程序
RNGXiaohua
比咸鱼还咸
展开
-
Python验证注册用户名是否正确
# 模拟一个注册帐号时输入的用户名是否符合要求 # 用户名要求:只能包括大写字母、小写字母、数字、下划线_,长度不能大于20个字符 username_element_list = ('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z', ...原创 2019-08-24 11:44:50 · 6954 阅读 · 0 评论 -
Python词频统计
# 词频统计:将每个单词都转换为小写,去掉有些单词后面的标点符号 import string with open("D:/test.txt", 'r', encoding='utf-8') as text: # 用一个列表存储所有的单词 words = [word.strip(string.punctuation).lower() for word in text.read(...原创 2019-08-21 16:55:40 · 325 阅读 · 0 评论