Random Password Generator

Password Is

Refresh the page to generate new password

This is simple website in which you can generate any random password, it is part of project .The languages which are used is HTML, CSS & Python

import random pass1 = ['a','b','c','d','e','f','g', 'h','i','j','k','l','m','n', 'o','p','q','r','s','t','u', 'v','w','x','y','x','A','B', 'C','D','E','F','G','H','I', 'J','K','L','M','N','O','P', 'Q','R','S','T','U','W','X', 'Y','Z','1','2','3','4','5', '6','7','8','9','0', '#','$'] password = "" for x in range(10): password = password + random.choices(pass1)[0] pyscript.write('enter',password)