欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 生成英文字母对应顺序字典

程序员文章站 2022-04-09 08:54:55
...
# 大写英文字母
upper_char_index_dict = {chr(i): (i-65) for i in range(65, 91)}
# 小写英文字母
lower_char_index_dict = {chr(i): (i-97) for i in range(97, 130)}