I have the current simple script saved as ex1.py in the Sublime Text 2 IDE.
print "Hello world!"
print "Hello Again"
print "I like typing this."
print "This is fun."
print 'Yay! Printing.'
print "I'd much rather you 'not'."
print 'I "said" do not touch this.'
I would like to execute a single line from this script in Terminal, but haven't been able to figure out how.
The script executes all seven lines. Is there a way to specify, for example, that I just want to execute line 3?