“wie man die nächste 5 Iteration in Python überspringt” Code-Antworten

wie man die nächste 5 Iteration in Python überspringt

skipcount = -1
song = ['always', 'look', 'on', 'the', 'bright', 'side', 'of', 'life']
for sing in song:
    if sing == 'look' and skipcount <= 0:
        print sing
        skipcount = 3
    elif skipcount > 0:
        skipcount = skipcount - 1
        continue
    elif skipcount == 0:
        print 'a' + sing
        skipcount = skipcount - 1
    else:
        print sing
        skipcoun
Quaint Quail

Überspringen Sie zur nächsten Iteration in Loop Python

for i in range(1,11):
    if i==5:
        continue
    print (i)
Repulsive Ratel

Ähnliche Antworten wie “wie man die nächste 5 Iteration in Python überspringt”

Fragen ähnlich wie “wie man die nächste 5 Iteration in Python überspringt”

Weitere verwandte Antworten zu “wie man die nächste 5 Iteration in Python überspringt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen