re.search('python', 'Working on python is easy')
Here I am able to search python.
I want negative pattern to be placed which actually should result nothing or no match.
I like to use re.search when string contains python but doesn't contain easy in string 'Working on python is easy'. How would I do that? Both positive and negative condition at the same time.