<div>Hello,</div>
<div> </div>
<div>I&#39;m trying to find a way to use the random.randint function to generate a random number, but everytime I run the program it locks up IDLE. Here is what I have so far:</div>
<div> </div>
<div>import random</div>
<div> </div>
<div>def main():</div>
<div>     x = input(&quot;Enter a number: &quot;)</div>
<div>     y = input(&quot;Enter a different number: &quot;)</div>
<div> </div>
<div>     z = random.randint(x,y)</div>
<div> </div>
<div>print &quot;The random number between &quot;, x, &quot; and &quot;, y, &quot; is &quot;, z</div>
<div> </div>
<div>main()</div>
<div> </div>
<div>Can you tell me where I&#39;m going wrong here? When I run the program it allows me to enter the numbers for x and y, then freezes. </div>
<div><br>Thanks! </div>
<div>Jeff </div>
<div> </div>