Random Password Generator

PHOTO EMBED

Wed Aug 10 2022 08:28:16 GMT+0000 (Coordinated Universal Time)

Saved by @redpsych #undefined

import random as r
p = 'abcdefghijklmnopqrstuvwxyz0123456789%^*(-_=+)'           # Population
print(''.join(r.choices(p, k=10)))                       # Return a k sized list of population elements chosen with replacement.
content_copyCOPY