简单:
>>> import string>>> string.ascii_letters'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'>>> import random>>> random.choice(string.ascii_letters)'j'
string.ascii_letters
根据当前语言环境返回包含小写字母和大写字母的字符串。
random.choice
从序列中返回单个随机元素。

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