while expression: statement(s) Ví dụ: count = 0 while (count < 9): print 'The count is:', count count = count + 1 print "Good bye!" Kết quả hiển thị của ví dụ trên: