Y
Hacker News
new
|
ask
|
show
|
jobs
by
gabagool
1621 days ago
>no expressive switch/case statement
match/case (not a drop in switch statement)
>breaking out of loops
break
>ending scripts early (for explorative programming)
exit() or sys.exit()
2 comments
aflag
1620 days ago
I think by breaking out of loops they meant breaking out of nested loops.
link
andi999
1620 days ago
Exit or sys exit kills the kernel, so for explorative programming in like spyder it is not that useful.
link
jstx1
1620 days ago
Are you looking for breakpoint()?
link