1~20171217-104342.py 904 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. prefixes = ("prefixe1"+"prefixe2"+"prefixe3"+"prefixe4")
  8. print (prefixes)
  9. #print (prefixe1)
  10. #intégrer une sentence
  11. #myfile = open ("which_spites.txt", 'r')
  12. #sentence = myfile.read()
  13. #myfile.close()
  14. phrase = "And that which spites me more than all these wants- He does it under name of perfect love"
  15. #print("1ere réplique:", phrase)
  16. #définir la liste de mot correspondante
  17. nouvelle_phrase = []
  18. mots = phrase.split()
  19. #print(mots)
  20. for mot in mots:
  21. nouveau_mot= prefixe1+mot
  22. #print(nouveau_mot)
  23. nouvelle_phrase.append(nouveau_mot)
  24. #print(nouvelle_phrase)
  25. #print("phrase mono-", " ".join(nouvelle_phrase))
  26. #séparer chaque mot
  27. #choix d'un prefixe parmis le stack de prefixe
  28. #indiquer au prefixe qu'il precede le mot