Random Password Generator

  • Share this:

Code introduction


Generates a random password of a specified length, consisting of letters, digits, and special characters.


Technology Stack : os, re, math, random, string

Code Type : Function

Code Difficulty : Intermediate


                
                    
import os
import re
import math
import random
import string

def generate_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.")
    return ''.join(random.choice(string.ascii_letters + string.digits + string.punctuation) for _ in range(length))