网络编程
位置:首页>> 网络编程>> Python编程>> Python 一句话生成字母表的方法

Python 一句话生成字母表的方法

作者:zzzmmy2003  发布时间:2022-03-15 06:49:47 

标签:Python,生成,字母表

List


>>> [chr(i) for i in range(97,123)]
['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']

String


>>> ''.join([chr(i) for i in range(97,123)])
'abcdefghijklmnopqrstuvwxyz'

两句话


>>> import string
>>> string.ascii_lowercase
'abcdefghijklmnopqrstuvwxyz'

dict两句话


>>> dict.fromkeys(string.ascii_lowercase, 0)
{'a': 0, 'b': 0, 'c': 0, 'd': 0, 'e': 0, 'f': 0, 'g': 0, 'h': 0, 'i': 0, 'j': 0, 'k': 0, 'l': 0, 'm': 0, 'n': 0, 'o': 0, 'p': 0, 'q': 0, 'r': 0, 's': 0, 't': 0, 'u': 0, 'v': 0, 'w': 0, 'x': 0, 'y': 0, 'z': 0}

来源:https://blog.csdn.net/zzzmmy2003/article/details/54837838

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com