text = '''first_condition(enabled)
extra_condition(disabled)
testing(example)
other(something)'''

import re

d = dict(re.findall(r'^(.*)\((.*)\)$', text, re.M))
keys = ['first_condition', 'extra_condition', 'testing', 'other']
result = [d.get(key, '') for key in keys]
print result 