“sonst Klausel in Loop Python” Code-Antworten

Python für/sonst

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

sonst Klausel in Loop Python

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

Ähnliche Antworten wie “sonst Klausel in Loop Python”

Fragen ähnlich wie “sonst Klausel in Loop Python”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen