Boston Python Workshop 6/Friday/Tutorial: Difference between revisions

Content added Content deleted
imported>Jesstess
imported>Jesstess
Line 356: Line 356:
b = "brown"
b = "brown"
c = "fox jumps over the lazy dog"
c = "fox jumps over the lazy dog"
print "The", a * 3, b * 3, c
print "The " + a * 3 + " " + b * 3 + " " + c
</pre>
</pre>