生成随机的字符串
以下例子中,生成随机的字符串(大小写英文字母、数字组成)。
import random
import string
random_str = ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(20))
print(random_str)
"""
X5V1ehPV5QaFQokclSL2
"""
生成随机的无重复字符的字符串
以下例子中,生成随机的无重复字符的字符串(大小写英文字母、数字组成),但其长度不能超过样本总长。
import random
import string
random_str = ''.join(random.sample(string.ascii_letters + string.digits, 20))
print(random_str)
"""
N4CHbuyAVPvJWGXniQUF
"""
random 模块
random.choice(seq) 从非空序列 seq 中随机选择一个元素。
random.sample(seq, k) 从序列 seq 中随机选择k个不重复的元素。
string 模块
/usr/lib/python3.7/string.py
"""
whitespace -- a string containing all ASCII whitespace
ascii_lowercase -- a string containing all ASCII lowercase letters
ascii_uppercase -- a string containing all ASCII uppercase letters
ascii_letters -- a string containing all ASCII letters
digits -- a string containing all ASCII decimal digits
hexdigits -- a string containing all ASCII hexadecimal digits
octdigits -- a string containing all ASCII octal digits
punctuation -- a string containing all ASCII punctuation characters
printable -- a string containing all ASCII characters considered printable
"""
whitespace = ' \t\n\r\v\f'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_letters = ascii_lowercase + ascii_uppercase
digits = '0123456789'
hexdigits = digits + 'abcdef' + 'ABCDEF'
octdigits = '01234567'
punctuation = r"""!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~"""文章来源:https://www.toymoban.com/news/detail-760953.html
printable = digits + ascii_letters + punctuation + whitespace文章来源地址https://www.toymoban.com/news/detail-760953.html
到了这里,关于python 生成随机字符串(大小写英文字母、数字组成)、生成随机的无重复字符的字符串的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!