Vitalik Buterin pfp
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!
47 replies
123 recasts
580 reactions

Suhail Kakar pfp
Suhail Kakar
@suhailkakar
also, `except` try: some_function() except SomeError as err: some_handle(err) why isn't it called catch like literally everywhere else in humanity?
0 reply
0 recast
1 reaction