Hello list<br><br>I notice a difference between running the following script on my Mac and on a PC:<br><br>from time import sleep<br>for i in range(10):<br> print i,<br> sleep(2)<br><br>On my PC this prints a number every 2 seconds. This is the behavior I want.<br>
<br>On my Mac Python waits 10*2 = 20 seconds, and then prints 0 1 2 3 4 5 6 7 8 9<br><br>Any thoughts on how I can make Python behave to get the Python behavior of my PC on my Mac?<br><br>Thanks,<br><br>Mark<br><br>