Random Password Generator

  • Share this:

Code introduction


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


Technology Stack : string, random

Code Type : Function

Code Difficulty : Intermediate


                
                    
import re
import random
import string
import math

def generate_password(length):
    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 + "!@#$%^&*?"
    return ''.join(random.choice(characters) for i in range(length))                
              
Tags: