We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebfd55d commit c8e6ed8Copy full SHA for c8e6ed8
pyauto.py
@@ -0,0 +1,25 @@
1
+#Author-Slayking1965
2
+#email-kingslayer8509@gmail.com
3
+import random
4
+import pyautogui
5
+import string
6
+
7
8
+chars = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
9
10
+chars = string.printable
11
+chars_list = list(chars)
12
13
14
+password = pyautogui.password("Enter a password : ")
15
16
+guess_password = ""
17
18
+while(guess_password != password):
19
+ guess_password = random.choices(chars_list, k=len(password))
20
21
+ print("<=================="+ str(guess_password)+ "==================>")
22
23
+ if(guess_password == list(password)):
24
+ print("Your password is : "+ "".join(guess_password))
25
+ break
0 commit comments