2~20171217-110244.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. choice(prefixes)
  25. nouveau_mot= prefixes+mot
  26. print(nouveau_mot)
  27. nouvelle_phrase.append(nouveau_mot)
  28. print(nouvelle_phrase)
  29. #print("phrase mono-", " ".join(nouvelle_phrase))
  30. #séparer chaque mot
  31. #choix d'un prefixe parmis le stack de prefixe
  32. #indiquer au prefixe qu'il precede le mot