Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

x = "there are %d types of people" %10

binary = "binary"
do_not = "don't"
y = "Those who know %s and those who know %s" %(binary, do_not)
print x
print y
print "i said : %r" %x
print " i also said : %s" %y
hilarious = False
joke_evaluation = " isnt that joke so funny!! %r"
joke_evaluation %hilarious
w = "this is the left part of the string"
e = " this is the right side of the string"
print w + e

You might also like