Created
September 23, 2013 20:11
-
-
Save akreer135/6676204 to your computer and use it in GitHub Desktop.
The lesson on strings and text
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 characters
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