@webbdevvue
/
63_intro-errors
No description
fork
loading
share
new repl
header icons
talk
Sign up
Files
main.py
main.py
1
2
3
4
5
6
x = [
'a'
,
'b'
,
'c'
,
'd'
]
for
n
in
x:
if
n ==
'c'
: print(
'stop'
)
break
print(n)