Skip to content

Instantly share code, notes, and snippets.

View a-aganesov's full-sized avatar
🏠
Working from home

Arsen Aganesov a-aganesov

🏠
Working from home
View GitHub Profile
@a-aganesov
a-aganesov / Password_V2.10.py
Last active January 26, 2019 19:22
Generator and Checker Password
def password_2in1():
import random
# Блок генерации пароля // Block generation password
list_symbols_numbers = ['q', 'w', 'e', 'r', 't', 'y', 'u', 'i', 'o', 'p', 'a', 's', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'z', 'x', 'c', 'v', 'b', 'n', 'm',
'Q', "W", "E", "R", "T", "Y", "U", "I", "O", "P", "A", "S", "D", "F", "G", "H", "J", "K", "L", "Z", "X", "C", "V", "B", "N", "M",
'1', '2', '3', '4', '5', '6', '7', '8', '9', '0',
'!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+'
]