Hi all, I am a newb in python, I can understand what does for loop do, but cant really understand while loop do, I knew it does repeat something while the condition is true, easy to say, but really hard to use as far as I think. say a example here:
while 1:
rate(100) #what does this rate(100) do?
try:
'something'
except:
'something else'
I just cant understand it.....help! thanks in advance:)