-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpass.py
44 lines (29 loc) · 969 Bytes
/
pass.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
import string
import random
import string
import random
def password(size=8, chars=string.ascii_letters + string.digits +
string.punctuation):
return ''.join(random.choice(chars) for _ in range(size))
print(password(int(input("""
account report >> """))))
print ("")
import string
import random
def password(size=8, chars=string.ascii_letters + string.digits +
string.punctuation):
return ''.join(random.choice(chars) for _ in range(size))
print(password(int(input("""
channel report >> """))))
print("")
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz!5788¥€fh--_'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_letters = ascii_lowercase + ascii_uppercase
import string
import random
def password(size=8, chars=string.ascii_letters + string.digits +
string.punctuation):
return ''.join(random.choice(chars) for _ in range(size))
print(password(int(input("""
group report>> """))))
print ("")