/ 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)])
Comments
 Subscribe to comments
                    Subscribe to comments
                
                