I wrote a code for a computer generated madlibs:
from random import randrange
print 'Welcome to Madlibs!'
def choose():
f = open('/usr/share/dict/words')
content = f.readlines()
return content[randrange(len (content))]
word = choose()
wordone = choose()
wordtwo = choose()
print 'there was a boy called', word, 'that had a', wordone, 'as a', wordtwo
There's a newline after the variable words because in the file they include a newline after each word. I know the proper command to remove the newline would be str.strip, but I'm not sure where to put it.
You put
.strip()
when you know you can trim off characters from the start and end of a string. In this case you'd put it while reading line by line.