Advertisement
kingbode

Untitled

Oct 17th, 2023
878
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.27 KB | None | 0 0
  1. char_dict = {
  2.     "a": 1,
  3.     "b": 2,
  4.     "c": 3,
  5.     "d": 4,
  6.     "e": 5,
  7.     "f": 6,
  8.     "g": 7,
  9.     "h": 8,
  10.     "i": 9,
  11.     "j": 10,
  12.     "k": 11,
  13.     "l": 12,
  14.     "m": 13,
  15.     "n": 14,
  16.     "o": 15,
  17.     "p": 16,
  18.     "q": 17,
  19.     "r": 18,
  20.     "s": 19,
  21.     "t": 20,
  22.     "u": 21,
  23.     "v": 22,
  24.     "w": 23,
  25.     "x": 24,
  26.     "y": 25,
  27.     "z": 26,
  28.     " ": "_",
  29.     "!": 27,
  30.     "@": 28,
  31.     "#": 29,
  32.     "$": 30,
  33.     "%": 31,
  34.     "^": 32,
  35.     "&": 33,
  36.     "*": 34,
  37.     "(": 35,
  38.     ")": 36,
  39.     "_": 37,
  40.     "+": 38,
  41.     "-": 39,
  42.     "/": 40,
  43.     "?": 41,
  44.     ">": 42,
  45.     "<": 43,
  46.     ",": 44,
  47.     ".": 45,
  48.     "`": 46,
  49.     "~": 47,
  50.     "|": 48,
  51.     "{": 49,
  52.     "}": 50,
  53.     "[": 51,
  54.     "]": 52,
  55.     "1": 53,
  56.     "2": 54,
  57.     "3": 55,
  58.     "4": 56,
  59.     "5": 57,
  60.     "6": 58,
  61.     "7": 59,
  62.     "8": 60,
  63.     "9": 61,
  64.     "0": 62,
  65.     "A": 63,
  66.     "B": 64,
  67.     "C": 65,
  68.     "D": 66,
  69.     "E": 67,
  70.     "F": 68,
  71.     "G": 69,
  72.     "H": 70,
  73.     "I": 71,
  74.     "J": 72,
  75.     "K": 73,
  76.     "L": 74,
  77.     "M": 75,
  78.     "N": 76,
  79.     "O": 77,
  80.     "P": 78,
  81.     "Q": 79,
  82.     "R": 80,
  83.     "S": 81,
  84.     "T": 82,
  85.     "U": 83,
  86.     "V": 84,
  87.     "W": 85,
  88.     "X": 86,
  89.     "Y": 87,
  90.     "Z": 88,
  91.     ":": 89,
  92.     ";": 90,
  93.     "=": 91
  94. }
  95.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement