0
What is the different between pass and continue keyword function in python
Please explain if possible with example
1 Réponse
+ 4
pass is a placeholder for code you will write later.
continue is when you are in a loop and you want the loop to start over without running any more below code