count = 1 >>> while count < 5 : print( count ) count = count + 1 1 2 3 4 for number in range( 1, 5 ) : print( number ) 1 2 3 4