Random Password Generator

  • Share this:

Code introduction


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


Technology Stack : string, random, re

Code Type : Generate random password

Code Difficulty : Intermediate


                
                    
import random
import string
import re

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