Created
November 12, 2013 19:13
Revisions
-
chriszf created this gist
Nov 12, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ Meringue:shenanigans chriszf$ python test.py fish this is a fish s/"fish"/"squid"/g squid this is a squid This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ import lib.vim a = "fish" b = "this is a fish" print a print b s/"fish"/"squid"/g print """s/"fish"/"squid"/g""" print a print b