How to search for version no python:
Build Host : iox-lux-013
Version : 3.2.8.08I sample
I tried:
import re
p=re.compile("Version.*: (.*?) ")
list=p.findall(s)
for i in list:
print i
works good
but not for:
Version : 3.2.8.08I
doesnt work :/
sdefined?