I want it to find the following file in mylist: "Microsoft Word 105Prt" (this file name could vary but will always have "Word" in it.
for myfile in filelist:
if myfile.contains("Word"):
print myfile
How can I modify this to work in python 2.7.5 since contains doesn't work.