Vitalik Buterin
@vitalik.eth
"continue" might be the worst-named keyword in python. Like, consider this code: for i in range(100): if i % 5 == 0: continue print(i) It prints out numbers that are not multiples of 5. But if you give it to someone who is not experienced in python, they might think the exact opposite!
43 replies
112 recasts
580 reactions
links 🏴
@links
Honestly never thought about it like that. It’s a common keyword in a ton of languages: C/C++, Java, JS, PHP, etc. Does python handle it differently than other languages? Seems like they all treat it the same.
0 reply
0 recast
7 reactions