for in loop with early end using break
- break
txt = 'hello world'
for ch in txt:
if ch == ' ':
break
print(ch)
print("Here")
h
e
l
l
o
Here
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
txt = 'hello world'
for ch in txt:
if ch == ' ':
break
print(ch)
print("Here")
h
e
l
l
o
Here