2.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #!/usr/bin/python
  2. # this is a shebang: https://en.wikipedia.org/wiki/Shebang_%28Unix%29
  3. import random
  4. prefixe1 = "MONO-"
  5. prefixe2 = "UNI-"
  6. prefixe3 = "ANTI-"
  7. prefixe4 = "SUB-"
  8. #prefixes = prefixe1+ prefixe2+ prefixe3+ prefixe4 : chaîne de caractère / phrase
  9. #print ( type(nom_du_variable)) :pour savoir quel type d'objet
  10. prefixes = [prefixe1, prefixe2, prefixe3, prefixe4]
  11. print (prefixes)
  12. #print (prefixe1)
  13. #intégrer une sentence
  14. #myfile = open ("which_spites.txt", 'r')
  15. #sentence = myfile.read()
  16. #myfile.close()
  17. phrase = "And that which spites me more than all these wants- He does it under name of perfect love"
  18. print("1ere réplique:", phrase)
  19. #définir la liste de mot correspondante
  20. nouvelle_phrase = []
  21. mots = phrase.split()
  22. print(mots)
  23. for mot in mots:
  24. prefixe =random.choice(prefixes)
  25. print("prefixe aléatoire:", prefixe)
  26. nouveau_mot= prefixe+mot
  27. print(nouveau_mot)
  28. nouvelle_phrase.append(nouveau_mot)
  29. print(nouvelle_phrase)
  30. print("phrase mono-", " ".join(nouvelle_phrase))
  31. #séparer chaque mot
  32. #choix d'un prefixe parmis le stack de prefixe
  33. #indiquer au prefixe qu'il precede le mot