password generator python
import string
from random import *
characters = string.ascii_letters + string.punctuation + string.digits
password = "".join(choice(characters) for x in range(randint(8, 16)))
print password
password generator python
import string
from random import *
characters = string.ascii_letters + string.punctuation + string.digits
password = "".join(choice(characters) for x in range(randint(8, 16)))
print password
python password generator
import random
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@£$%^&*().,?0123456789'
number = input('Please enter a number of passwords.')
try:
number = int(number)
except:
print("Error, please enter a number!")
length = input('Length of password?')
try:
length = int(length)
except:
print("Error, please enter a number!")
print('nHere are your password(s):')
for pwd in range(number):
password = ''
for c in range(length):
password += random.choice(chars)
print(password)
python random string
import secrets
secrets.token_hex(nbytes=16)
# this will produce something like
# aa82d48e5bff564f3221d02194611c13
python random password generator
import random
alph = list('ABCDEFGHIJKLMNOPQRSTUVWXYZ
abcdefghijklmnopqrstuvwxyz
1234567890 !@#$%^&*(){}[]<>,.')
out = ''
for char in string:
out += random.choice(alph)
print(out)
python password generator
import random
import string
x = str(input("Do you want a password? y/n "))
list = []
if x == "y":
print("Alright!")
for i in range(16):
_1 = random.choice(string.ascii_letters)
_2 = random.randint(1, 9)
list.append(_1)
list.append(_2)
else:
print("ok")
def convert(list):
s = [str(i) for i in list]
res = "".join(s)
return(print(res))
convert(list)
generate password python
from tkinter import *
import string
from random import randint, choice
def generate_password():
password_min = 8
password_max = 8
all_chars = string.ascii_letters + string.punctuation + string.digits
password = "".join(choice(all_chars) for x in range (randint(password_min, password_max)))
password_entry.delete(0, END)
password_entry.insert(0, password)
def generate_password2():
password_min = 8
password_max = 8
all_chars = string.ascii_letters
password = "".join(choice(all_chars) for x in range (randint(password_min, password_max)))
password_entry.delete(0, END)
password_entry.insert(0, password)
def generate_password3():
password_min = 8
password_max = 8
all_chars = string.ascii_letters + string.digits
password = "".join(choice(all_chars) for x in range (randint(password_min, password_max)))
password_entry.delete(0, END)
password_entry.insert(0, password)
window = Tk()
window.title("Generateur de mdp")
window.geometry("720x480")
window.minsize(1000, 600)
window.wm_attributes("-topmost", 1)
window.configure(bg = '#4065A4')
frame = Frame(window, bg='#4065A4')
salut = Label(frame, text="Le mdp va etre generer ici", font=("Helvetica", 20), bg='#4065A4', fg='white')
salut.pack()
password_entry = Entry(frame, text="Mot de passe", font=("Helvetica", 20), bg='#4065A4', fg='white')
password_entry.pack()
Moche = Label(frame, text="Appuyez sur le boutton ci-dessous pour générer un mdp avec des lettres, ponctuations et caracteres speciaux", font=("Helvetica", 20), bg='#4065A4', fg='white')
Moche.pack()
button = Button(frame, text="generer", font=("Helvetica", 20), bg='#4065A4', fg='red', command=generate_password)
button.pack(fill=X)
Moche = Label(frame, text="Appuyez sur le boutton ci-dessous pour générer un mdp avec uniquement des lettres", font=("Helvetica", 20), bg='#4065A4', fg='white')
Moche.pack()
button = Button(frame, text="generer", font=("Helvetica", 20), bg='#4065A4', fg='red', command=generate_password2)
button.pack(fill=X)
Moche = Label(frame, text="Appuyez sur le boutton ci-dessous pour générer un mdp avec des lettres et des chiffres", font=("Helvetica", 20), bg='#4065A4', fg='white')
Moche.pack()
button = Button(frame, text="generer", font=("Helvetica", 20), bg='#4065A4', fg='red', command=generate_password3)
button.pack(fill=X)
frame.pack(expand=YES)
window.mainloop()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us