python 生成随机字符串

1.大小写字符串

# coding: utf-8
# Author: leebor
import random
import string

print(''.join(random.sample(string.ascii_letters, 16)))

你可能感兴趣的:(python 生成随机字符串)