336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

description :

 

 


source code :

list_data = ['a', 'b', 'c', 'd', 'e', 'f', 'g']

for x in list_data:
    print(x)
    
    if x <'c':
        continue
    else:
    	break

 

result :

'Etc > Python' 카테고리의 다른 글

014 while continue break  (0) 2021.01.17
013 for else  (0) 2021.01.16
011 for  (0) 2021.01.16
010 if elif else  (0) 2021.01.15
009 if else  (0) 2021.01.15

+ Recent posts