/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
import string from random import choice def GetRandomPassword(): return ''.join([choice(string.letters + string.digits) for i in range(9)])