You can download this code by clicking the button below.
This code is now available for download.
This function generates a random password of a specified length, composed of letters, digits, and special characters.
Technology Stack : math, re, time, datetime, random, string
Code Type : Function
Code Difficulty : Intermediate
import math
import re
import time
import datetime
import random
import string
def generate_random_password(length=12):
if not isinstance(length, int) or length < 6:
raise ValueError("Password length must be an integer greater than or equal to 6")
characters = string.ascii_letters + string.digits + string.punctuation
password = ''.join(random.choice(characters) for i in range(length))
return password