17 lines
425 B
Python
17 lines
425 B
Python
#!/usr/bin/python
|
|
# this is a shebang: https://en.wikipedia.org/wiki/Shebang_%28Unix%29
|
|
import random
|
|
|
|
|
|
#print (prefixe1)
|
|
#intégrer une sentence
|
|
#myfile = open ("which_spites.txt", 'r')
|
|
#sentence = myfile.read()
|
|
#myfile.close()
|
|
|
|
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 = sentence.split(" ")
|
|
print( "liste des mots:", mots )
|