Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 378 Bytes

File metadata and controls

24 lines (17 loc) · 378 Bytes

Python Projects: Password Generator

Python Script
This repo contains python code that generates a random password'
Run the code.

Python

import random
import string

total = string.ascii_letters + string.digits + string.punctuation

length = 16

password = "".join(random.sample(total, length))

print(password)

Output

^:eD6l,sQm`Zkg;T