This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | |
'!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '+' | |
] |