So say I have a python v2.7 file with some code like this:
print 'asdf'
print 'hi mom!'
But I want to run it in python3, I'll need to add those parenthesis to them like so:
print('asdf')
print('hi mom!')
I was trying to use the following regex in vim to solve the problem, but it wasn't working:
:%s/print '.*'/print('1')/gc
It just gave me print functions (with parenthesis) that had empty strings. Any help is appreciated; thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…