gpt4 book ai didi

python - 在 Python 中生成一个随机字母

转载 作者:IT老高 更新时间:2023-10-28 12:34:48 26 4
gpt4 key购买 nike

有没有办法在 Python 中生成随机字母(如 random.randint 但用于字母)? random.randint 的范围功能会很好,但有一个只输出随机字母的生成器总比没有好。

最佳答案

简单:

>>> import string
>>> string.ascii_letters
'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
>>> import random
>>> random.choice(string.ascii_letters)
'j'

string.ascii_letters根据当前语言环境返回一个包含大小写字母的字符串。

random.choice从序列中返回单个随机元素。

关于python - 在 Python 中生成一个随机字母,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2823316/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com