Got the following string:
hash=49836EC32432A9B830BECFD66A9B6F936327EAE8
I need to match the 49836EC32432A9B830BECFD66A9B6F936327EAE8 so I do:
match = re.findall(".*hash=([A-F0-9]+).*",mydata)
all cool but when I want to print it
print "Hash: %s" % match
I get Hash: ['C5E8C500BA925237E399C44EFD05BCD4AAF76292']
what am I doing wrong? I need to print Hash: C5E8C500BA925237E399C44EFD05BCD4AAF76292