Skip to content

Instantly share code, notes, and snippets.

@akreer135
Created September 23, 2013 20:11
Show Gist options
  • Save akreer135/6676204 to your computer and use it in GitHub Desktop.
Save akreer135/6676204 to your computer and use it in GitHub Desktop.
The lesson on strings and text
x = "There are %d types of people." % 10
binary = "binary"
do_not = "don't"
y = "Those who know %s and those who %s." % (binary, do_not)
print x
print y
print "I said: %r." % x
print "I also said: '%s'." % y
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print joke_evaluation % hilarious
w = "This is the left side of..."
e = "a string with a right side."
print w + e
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment