On 12/24/2013 08:07 AM, [email protected] wrote: [snip...]
x = 1
while x <> 10
var x = x
x = x + 1
[snip...]
Besides the other valid answers you have received, I want to add one other minor nit. The symbol <> for unequal is deprecated -- it's better to use != instead. Although, as was also pointed out, in this particular case you want < (less than) rather than unequal.
-=- Larry -=-
--
https://mail.python.org/mailman/listinfo/python-list
