python获取英文字母、英文标点符号、中文标点符号

english_alphabet = string.ascii_lowercase // 英文字母 import string
english_punctuation = string.punctuation //英文标点 import string
chinese_punctuation = punctuation //中文标点 from zhon.hanzi import punctuation

版权声明:本文为weixin_46304253原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。