-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathList_and_tuples.py
More file actions
13 lines (12 loc) · 913 Bytes
/
List_and_tuples.py
File metadata and controls
13 lines (12 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
List = ({0: "0", 1: "1", 2: "2", 3: "3", 4: '4', 5: '5', 6: '6', 7: '7', 8: "8", 9: "9", 10: 'a', 11: 'b',12: 'c',
13: 'd', 14: 'e', 15: 'f', 16: 'g', 17: 'h',18: 'i', 19: 'j', 20: 'k', 21: 'l', 22: 'm', 23: 'n', 24: 'o',
25: 'p', 26:'q', 27: 'r', 28: 's', 29: 't', 30: 'u', 31: 'v', 32: 'w', 33: 'x', 34: 'y', 35: 'z', 36: '`',
37: '!', 38: '@', 39: "#", 40: '$', 41: '%', 42: '^', 43: '&', 44: '*', 45: '(', 46: ')'})
Symbols = ('`', '!', '@', "#", '$', '%', '^', '&', '*', '(' ,')')
Numbers = ("0", "1", "2", "3", '4', '5','6', '7', "8", "9")
letters = ('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')
Letters = ('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')
Password_Gen = []
Password = "Null"