1~20171217-103615.py 774 B

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