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

I think by breaking out of loops they meant breaking out of nested loops.
Exit or sys exit kills the kernel, so for explorative programming in like spyder it is not that useful.
Are you looking for breakpoint()?