JavaScript
x
77
77
1
import random
2
import pickle
3
alphabets = ['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']
4
up_alphabets = ['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']
5
special_chars = ['!','@','#','$','%','^','&','*','~','+','-','_','?']
6
def password(description):
7
password = str()
8
times = 0
9
ten = 10
10
k = list()
11
global works
12
works = False
13
works1 = False
14
works2 = False
15
works3 = False
16
n = list()
17
for l in range(ten):
18
o = random.randint(0,9)
19
o = str(o)
20
k.append(o)
21
for l in range(ten):
22
choice = random.randint(0,2)
23
if choice == 0:
24
works = True
25
password += k[times]
26
times += 1
27
password = str(password)
28
if choice == 1:
29
up_low_choice = random.randint(0,1)
30
if up_low_choice == 0:
31
works1 = True
32
alpha_choice = random.choice(alphabets)
33
password += alpha_choice
34
password = str(password)
35
if up_low_choice == 1:
36
works2 = True
37
alpha_choicee = random.choice(up_alphabets)
38
password += alpha_choicee
39
password = str(password)
40
times += 1
41
if choice == 2:
42
works3 = True
43
special_choice = random.choice(special_chars)
44
password += special_choice
45
times += 1
46
password = str(password)
47
if works == False:
48
password = list(password)
49
password.pop()
50
works = True
51
password += k[times]
52
times += 1
53
password = str(password)
54
if works1 == False:
55
password = list(password)
56
password.pop()
57
works1 = True
58
alpha_choice = random.choice(alphabets)
59
password += alpha_choice
60
password = str(password)
61
if works2 == False:
62
password = list(password)
63
password.pop()
64
works2 = True
65
alpha_choicee = random.choice(up_alphabets)
66
password += alpha_choicee
67
password = str(password)
68
if works3 == False:
69
password = list(password)
70
password.pop()
71
works3 = True
72
special_choice = random.choice(special_chars)
73
password += special_choice
74
password = str(password)
75
password = str(password)
76
print(str(password))
77
this is my code
it is a simple passoword generator but when i run it it sometimes prints a string and sometimes a list please help i tried looking for any print commands that i left but there is only one print command at the end the code is in progress but i need help for the time being thanks in advance
####################################################################################################
Advertisement
Answer
Sometimes you are getting list so at the end you can add check for this and convert it to string check below code:
Add this code before last line of your code
JavaScript
1
8
1
try:
2
password = eval(password)
3
if type(password) is list:
4
password = "".join(password)
5
print("password is list")
6
except Exception:
7
pass
8