InterviewSolution
Saved Bookmarks
| 1. |
What is pass in Python? What are the differences between pass and continue? |
|
Answer» PASS means where there is a no-operation PYTHON statement. It is just a placeholder in a compound statement where nothing NEEDS can be WRITTEN. The continue makes the loop to resume from the next iteration. |
|