<div>I am in an early lesson in &quot;A Byte of Python.&quot;&nbsp; Instead of writing a program to find the area of a rectangle I thought it would be useful to write a program to determine the length of the diagonal of a &quot;golden rectangle&quot;, which would of course equal the sq root of the sum of the squares of the&nbsp;width and height.&nbsp; Here is my program:</div>

<div>&gt;&gt;&gt; height = input (&quot;Height:&quot;)<br>Height:1<br>&gt;&gt;&gt; width = input (&quot;Width:&quot;)<br>Width:1.618<br>&gt;&gt;&gt; int = ((height**2) + (width**2))<br>&gt;&gt;&gt; print int<br>3.617924<br>
&gt;&gt;&gt; hypotenuse * hypotenuse = int<br>SyntaxError: can&#39;t assign to operator</div>
<div>&nbsp;</div>
<div>I looked ahead in the lesson and could find no mention of square roots.&nbsp; How do I find the square root of an integer?</div>