1234567891011121314151617181920212223242526272829303132 |
- prefixe1 = "MONO-"
- prefixe2 = "UNI-"
- prefixe3 = "ANTI-"
- prefixe4 = "SUB-"
- print (prefixe1)
- phrase = "And that which spites me more than all these wants- He does it under name of perfect love"
- print("1ere réplique:", phrase)
- mots = phrase.split()
- print(mots)
- for mot in mots:
- nouveau_mot= prefixe1+mot
- print(nouveau_mot)
|