> Also some times I see a while loop that starts out like > while 1: > what does that tiring to say, only go through the loop once. Or is > that a I if so what would you use something like that example for? "while 1:" means the same thing as "while true:" Bascially it would run forever, because 1 is always 1, or true is always true. Alan