Watched Teen Wolf last night for the first time since I was about ten. It's pretty awful, just like I remembered, and sadly utterly unquotable. This is, however, a great movie for watching tipsy on schnapps! (... which I did not try at age ten!)
I spent much of the night trying to sort out the ambiguity of Lewis, which
this review finally
(
Read more... )
Comments 5
#!/usr/bin/env python
import re
teenwolf_f = open("teenwolf.txt", "rb")
teenwolftoo_f = open("teenwolftoo.txt", "wb")
for line in teenwolf_f.xreadlines():
line = line.replace("Michael J. Fox", "Jason Bateman")
sport_re = re.compile("basketball", re.I)
line = sport_re.sub("boxing", line)
teenwolftoo_f.write(line)
print "Sequel created!"
Reply
Reply
Reply
Reply
Leave a comment