I have a list of around 100 files form which I wanted to read and match one word. Here's the piece of code I wrote.
import re
y = 'C:\\prova.txt'
var1 = open(y, 'r')
for line in var1:
if re.match('(.*)version(.*)', line):
print line
var1.close()
every time I try to pass a tuple to y I get this error:
TypeError: coercing to Unicode: need string or buffer, tuple found.
(I think that open() does not accept any tuple but only strings)
So I could I get it to work with a list of files?
Thank you in advance!!!!