x = 0 while x < 10: x += 1 if x == 3: print('Pulando iteração, pois x é igual a 3') continue print('O valor de x é', x)