<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 PTSIZE=10>I would like to construct a table for my program but it does not seem to be coming out evenly. Could someone please let me know what to do so that everything will work out correctly?
<BR>
<BR>def main():
<BR> &nbsp;&nbsp;&nbsp;print "This program shows a table of Celsius temperatures and there Fahrenheit equivalents every 10 degrees from 0C to 100C"
<BR> &nbsp;&nbsp;&nbsp;print "C F"
<BR> &nbsp;&nbsp;&nbsp;for i in(0, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100):
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fahrenheit = (9.0/5.0) * i + 32
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print i
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print " &nbsp;&nbsp;",
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print fahrenheit
<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<BR>main() </FONT></HTML>