Python获取随机字母

import string
import random

s = string.ascii_letters
# 大写string.ascii_uppercase
# 小写string.ascii_lowercase
r = random.choice(s)
print(r)

 

你可能感兴趣的:(Py,python,random)