Introduction To Python - Learn Python the hard way v2.0
Title: ex1.py
# I am doing this quickly because I already know this stuff
# Printing a String with double quotes
print "Hello World!"
print "Hello Again"
print "I like typing this."
print "This is fun."
# Printing a string with single quotes
print 'Yay! Printing.'
print "I'd much rather you 'not'."
print 'I "said" do not touch this.'
