Wow, that was a quick response! Thanks all!<br><br>I have looked at a couple tutorials and whipped this up. However, attempting to run it in IDLE results in a syntax error leaving my elif highlighted in red. What&#39;s wrong? I&#39;ve looked at the code and can&#39;t find any syntax errors- though I&#39;ve just started.<br>
<br>print(&quot;[Temperature Converter, First Edition]&quot;)<br>print(&quot;Created on January 17th, 2009 by Ian Egland&quot;)<br>temp1 = int(input(&quot;Please enter a temperature: &quot;))<br>scale = input(&quot;Convert to (F)ahrenheit or (C)elcius?&quot;)<br>
if scale == &quot;F&quot;:<br>&nbsp;&nbsp;&nbsp; temp2 = (9/5)*temp1+32<br>&nbsp;&nbsp;&nbsp; print(temp1, &quot;C =&quot;, temp2, &quot;F&quot;<br>elif scale == &quot;C&quot;: # Error appears here.<br>&nbsp;&nbsp;&nbsp; temp2 = (5/9)*(temp1-32)<br>&nbsp;&nbsp;&nbsp; print(temp1, &quot;F =&quot;, temp2, &quot;C&quot;<br>
else:<br>&nbsp;&nbsp;&nbsp; print(&quot;Sorry, you must enter either an F or a C. Case-sensitive. Please try again.&quot;<br><br><br>In regards to learning python, I&#39;ve found that after I get somewhat-familiar with a language, I want a programming problem to solve with what I&#39;ve learned. While learning Java, <a href="http://www.javabat.com">http://www.javabat.com</a> has been my best friend. (That is, as close to a best friend as programming website can be.)<br>
Is there something like this for Java? Is one in the works?<br><br>-Ian<br>