要產生由大寫英文字母和數字組成的指定大小的隨機字串,我們可以利用Python 的string和random模組。
import string import random # Concatenate uppercase letters and digits charset = string.ascii_uppercase + string.digits # Generate a random string of specified size random_string = ''.join(random.choice(charset) for _ in range(N))
此解產生隨機字串,如“6U1S75”, “4Z4UKK”和“U911K4”。
或者,您可以使用 Python 3.6 的 random.choices() 函數:
random_string = ''.join(random.choices(charset, k=N))
為了增強加密安全性,請考慮使用 random.SystemRandom ():
random_string = ''.join(random.SystemRandom().choice(charset) for _ in range(N))
為了可重用性,定義一個自訂函數:
def id_generator(size=6, chars=string.ascii_uppercase + string.digits): return ''.join(random.choice(chars) for _ in range(size)) random_string = id_generator()
理解過程:
以上是如何在Python中產生包含大寫字母和數字的隨機字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!