main_21.py 321 B

123456789
  1. def get_replacement_stock() -> List[str]:
  2. """
  3. A list of faked names to replace the information you want to hide
  4. """
  5. stock = [f"{letter}..." for letter in ascii_uppercase] + [
  6. f"{a}{b}..." for a, b in list(itertools.combinations(ascii_uppercase, 2))
  7. ]
  8. random.shuffle(stock)
  9. return stock