asc
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asc相关的知识,希望对你有一定的参考价值。
# coding=gbk
# 返回ascii对应数字
# 新建列表用来保存对应序列
l1 = range(32, 48) # 第一段特殊符号
l2 = range(58, 64) # 第二段特殊符号
l3 = range(91, 97) # 第三段特殊符号
l4 = range(123, 127) # 第四段特殊符号
l5 = range(48, 58) # 数字0-9
l6 = range(65, 91) # 大写A-Z
l7 = range(97, 123) # 小写a-z
def zimu():
return l6+l7
def daxie():
return l6
def xiaoxie():
return l7
def shuzi():
return l5
def tszf():
return l1+l2+l3+l4
def all():
return l1+l2+l3+l4+l5+l6+l7
以上是关于asc的主要内容,如果未能解决你的问题,请参考以下文章