-
Notifications
You must be signed in to change notification settings - Fork 0
/
wifi.py
65 lines (60 loc) · 1.2 KB
/
wifi.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name=input("enter name : ")
date=input("enter date of birth ddmmyyyy : ")
wifi=[]
def split(word):
return [char for char in word]
li=split(date)
add=0
for i in range(len(date)):
add=add+int(li[i])
td=add
def adds(td):
f=0
while td > 0:
su = int(td) % 10
f = f + int(su)
td = int(td)/ 10
return int(f)
f1=0
while td>9:
td=adds(td)
g4=str(td)
wifi.append(g4)
print(wifi)
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@end@@@@@@@@@@@@@@@@@@@@@@dob
fact=0
g=len(name)
if(g>9):
while g>=0 :
fact=fact+g
g=g-1
#print(f"total indaex number =={fact}")
while fact>9:
fact=adds(fact)
wifi.append(fact)
else:
wifi.append(9)
print(wifi)
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@even odd @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
#name="chandan kashyap"
st=split(name)
st.remove(' ')
list=[]
for i in range(len(st)):
if i%2==0 :
list.append(st[i])
list.sort()
wifi.append(list[0])
print(wifi)
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@special character used
sc=['!','@','#','$','%','^','&','*','(']
le=len(name)
while le>9 :
le=adds(le)
wifi.append(sc[le-1])
print(wifi)
print("wifi password generate successful")
str1=""
for i in range(len(wifi)):
str1+=str(wifi[i])
print(str1)