Snippets Collections
1.# For-Else Syntax

2.for item in seq:
    3.statement 1
    4.statement 2
    5.if <cond>:
        6.break
7.Else:
8.Example:
     9.birds = ['Belle', 'Coco', 'Juniper', 'Lilly', 'Snow']
10.ignoreElse = False


11.for theBird in birds:
    12.print(theBird )
    13.if ignoreElse and theBird is 'Snow':
        14.break
15.else:
    16.print("No birds left.")
                              
                                
star

Tue Apr 21 2020 05:48:50 GMT+0000 (Coordinated Universal Time)

#python #python #loops #forloop #forelse

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension