print を print() に置換したときのメモ
print l[1] #b → print(l[1] )#b
%s/\(print\)\s\(.\+\)\(#.\+\)/\1(\2)\3
print len(l) → print(len(l))
%s/\(print\)\s\(.*\)/\1(\2)
その他覚え書き
str("hello \"world\"")
を".*"で検索したときマッチするのは、
"hello \"world\""
l = ["a","b","c","d"]
を".\{-}"で検索したときマッチするのは、
"a"
"b"
"c"
"d"
行末のスペース削除
%s/\s\+$//g