I have some python code with many lines like this:
print "some text" + variables + "more text and special characters .. etc"
I want to modify this to put everything after print within brackets, like this:
print ("some text" + variables + "more text and special characters .. etc")
How to do this in vim using regex?