PokeVideoPlayer v23.9-app.js-020924_
0143ab93_videojs8_1563605_YT_2d24ba15 licensed under gpl3-or-later
Views : 230,677
Genre: Education
License: Standard YouTube License
Uploaded At Feb 22, 2023 ^^
warning: returnyoutubedislikes may not be accurate, this is just an estiment ehe :3
Rating : 4.9 (353/13,726 LTDR)
97.49% of the users lieked the video!!
2.51% of the users dislieked the video!!
User score: 96.23- Overwhelmingly Positive
RYD date created : 2024-07-27T09:23:35.650591Z
See in json
Top Comments of this video!! :3
One other useful use case for continue would be to handle any exception inside your for loop. For example if you loop encounters any errors that might raise an exception, instead of breaking the loop you can use something like this:
for …:
try:
…
except:
…
continue
This will make sure your loop will continue iterating even if an exception is raised
…
|
@erayagdogan3389
1 year ago
Also using return in loop will stop all remaining code execution in function even it is a nested loop and will return the value. It's useful when you find what you are looking for and there is no need to loop.
83 |