Skip to main content

Command Palette

Search for a command to run...

🔑Password Generator🔑<Python/>

Updated
1 min readView as Markdown
🔑Password Generator🔑<Python/>
B

Coders Unite. Together We Rise.

import random

while 1:

    chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890@#$%&"

    c = 0

    len = int(input("How Long? ->>> "))

    amt = int(input("How Many? ->>> "))

    for i in range(0,amt):
        password = ""
        c+=1
        for i in range(0,len):
            x = random.choice(chars)
            password +=x
        print(f"{c}. Password ->>> {password}.")