ligne13~20171216-191358.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # -*- coding : utf8 -*-
  2. import random
  3. from scipy.stats import norm
  4. import numpy as np
  5. from colors import bold
  6. # Preferences
  7. noise_duration = 50
  8. silence_duration = 300
  9. # prob_list contiendra la problaité qu'il y ai une altération sur Chaque
  10. # lettre durant le bruit.
  11. prob_list_range = np.arange(-2, 2, 4/noise_duration)
  12. prob_list = [y*2 for y in norm().pdf(prob_list_range)]
  13. # fonction principale
  14. def main():
  15. # Lire le fichier input.txt et le ranger dans text_in
  16. with open("input.txt") as f:
  17. text_in = f.read()
  18. # Parcourir le fichier et effectuer le procédé sur chaque carractere
  19. # en fonction de sa place dans le texte. Écrire le résultat dans text_out
  20. text_out = ""
  21. for i, c in enumerate(text_in):
  22. text_out += process(i, c)
  23. # Écrire le contenu de text_out dans le fichier output.txt
  24. with open("output.txt", "w") as f:
  25. f.write(text_out)
  26. # Le procédé a appliquer sur chaque caractere en fonction de sa position.
  27. def process(index, char):
  28. # Je m'assure qu'il y ait un silence au début du texte
  29. index += silence_duration
  30. # Si je suis dans la période de bruit
  31. if index%(noise_duration+silence_duration) < noise_duration:
  32. # je tire au sort pour savoir si j'altère le caractere
  33. if random.random() < prob_list[index%(noise_duration+silence_duration)]:
  34. # j'altère le caractere avec un "v" ou un "r"
  35. char = bold(random.choice(["v", "r"]))
  36. # je retourne le caractere
  37. return char
  38. # je lance le programme
  39. main()