Random Password Generator

  • Share this:

Code introduction


This function generates a random password of a specified length, including uppercase and lowercase letters, digits, and special characters.


Technology Stack : random, string, re

Code Type : Generate random password

Code Difficulty : Intermediate


                
                    
import random
import string
import re
import math
import time
import os
import sys

def generate_random_password(length=8):
    if not isinstance(length, int) or length < 4:
        raise ValueError("Password length must be an integer greater than 3.")
    characters = string.ascii_letters + string.digits + string.punctuation
    password = ''.join(random.choice(characters) for _ in range(length))
    return password                
              
Tags: