You can download this code by clicking the button below.
This code is now available for download.
This function generates a random password of specified length, consisting of uppercase and lowercase letters, digits, and special characters.
Technology Stack : Python built-in libraries: string, random
Code Type : Function
Code Difficulty : Intermediate
import re
import math
import os
import sys
import random
import string
def random_password(length):
"""
生成指定长度的随机密码
"""
if not isinstance(length, int) or length < 8:
raise ValueError("Password length must be an integer greater than or equal to 8")
characters = string.ascii_letters + string.digits + string.punctuation
return ''.join(random.choice(characters) for i in range(length))