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