“CLUSE ELE” Respostas de código

python para/else

for n in range(2, 10):
    for x in range(2, n):
        if n % x == 0:
            print( n, 'equals', x, '*', n/x)
            break
    else:
        # loop fell through without finding a factor
        print(n, 'is a prime number')
Worrisome Wallaby

CLUSE ELE

for n in range(2, 10):
    for x in range(2, n):
        if n % x == 0:
            print( n, 'equals', x, '*', n/x)
            break
    else:
        # loop fell through without finding a factor
        print(n, 'is a prime number')
Micah M

Respostas semelhantes a “CLUSE ELE”

Perguntas semelhantes a “CLUSE ELE”

Procure respostas de código populares por idioma

Procurar outros idiomas de código