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

Content added Content deleted
imported>Jesstess
imported>Jesstess
No edit summary
Line 352: Line 352:
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>

3.
<pre>
print 2.0 * 123 + str(2.0) * 123
</pre>
</pre>