-
Notifications
You must be signed in to change notification settings - Fork 1
/
funcoes.py
45 lines (36 loc) · 1.4 KB
/
funcoes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from interface import * #Importa funções do arquivo "interface.py"
from random import choice #Importa função "choice" da biblioteca "random"
from time import sleep #Importa função "sleep" da biblioteca "time"
senha = [] #Lista da senha
#Checa se o número inteiro digitado é válido
def leiaInt(inteiro):
while True:
try:
inteiro = int(input(inteiro))
except (ValueError, TypeError):
print("\033[0;31mERRO! Digite apenas números inteiros!\033[m")
continue
else:
return inteiro
break
#Input da quantidade de senhas
def quant_senhas():
quant = leiaInt("Quantidade: ")
return quant
#Input do tamanho das senhas
def tam_senhas():
tam = leiaInt("Tamanho: ")
return tam
#Gerador de senhas
def gerador_senhas(quant, tam):
cabecalho("GERANDO SENHAS...")
sleep(1)
strings = ("a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z","1","2","3","4","5","6","7","8","9","0","!","@","#","$","%","&","*")
for senha_gerada in range(0, int(quant)):
for string in range(0, int(tam)):
senha.append(choice(strings))
for caracter in senha:
print(caracter, end="")
print("")
senha.clear()
sleep(1)