Random Password Generator

  • Share this:

Code introduction


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


Technology Stack : os, re, sys, time, json, random, string, threading, hashlib

Code Type : Function

Code Difficulty : Intermediate


                
                    
import os
import re
import sys
import time
import json
import random
import string
import threading
import hashlib

def generate_random_password(length=8):
    if length < 8:
        raise ValueError("Password length should be at least 8 characters")
    characters = string.ascii_letters + string.digits + string.punctuation
    password = ''.join(random.choice(characters) for i in range(length))
    return password