“Python случайный генератор паролей” Ответ

Генератор пароля 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
Glorious Giraffe

Python Password Generator

import random

lower = "abcdefghijklmnopqrstuvwxyz"
upper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
numbers = "0123456789"
symbols = "@#$&_-()=%*:/!?+."


string = lower + upper + numbers + symbols
length = int(input("How Many Characters Do You Want Your Password To Be: "))
password = "".join(random.sample(string, length))

print("Here Is Your Password:", password)
Sleepy Skimmer

генератор паролей в Python

import random

strong_keys = ["@","#","$","£","π","¥","&","3","¢","3","*","?","!","%","/","G","A","B","F","W","F","H","6","9",":","^","=","|","~","∆"]

def password():
	try:
		n = int(input('your password contain(type in number) : '))
	except:
		print('Rerun the program and type in number please')

	ans = ""
	for i in range(n):
		rand = random.choice(strong_keys)
		if i == 0:
			ans = rand
		else:
			ans += rand
		
	print('\n\nyour password: '+ans+'\n\n')
	user = input('if you dont like this?\nType \"r\" else \"q\" : ')
	if user.lower() == 'r':
		password()
	else:
		quit()
	
password()
S UZAIR

Генератор пароля Python

from random import randint

def create_random_chars(nbr_of_chars):
    return "".join(chr(randint(33,126)) for i in range(nbr_of_chars))


print(create_random_chars(10))
# I1CU>E5q;$
Puzzled Penguin

Python случайный генератор паролей

123455
Pleasant Pollan

Ответы похожие на “Python случайный генератор паролей”

Вопросы похожие на “Python случайный генератор паролей”

Больше похожих ответов на “Python случайный генератор паролей” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования