Generator python-3

#!/usr/bin/python3 #creator: https://www.facebook.com/Idajieje from string import ascii_letters , digits from random import choice longitud = int(input("Escribe que tipo de longitud deseas para generar la clave:")) cuantas = int(input("Escribe cuantos tipos de contraseña deseas generar:")) numeros = ascii_letters + digits espacio = '' a = 1 while a<=cuantas: final = espacio.join([choice(numeros) for i in range(longitud)]) print (final) a = a + 1

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.