import re
s = 'Medicine Treatment:     Not applicable'
m = re.search(r'Medicine Treatment:\s*(.*)', s)
if m:
	print(m.group(1))