Skip to content

natnew/Python-Projects-Password-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

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

About

Python Projects Password Generator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages