Difference between pass and continue in python?
Answer / Jitendra Prasad
The `pass` statement in Python does nothing but indicates that the code is intentionally empty. The `continue` statement is used to skip the current iteration of a loop and proceed with the next iteration.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you protect python source code?
How will you remove the last object from a list?
How much bytes do integer and decimal data types hold in python?
How to generate all permutations of a list in python?
What is a python egg?
What's the worst programming language?
Give the output of this example: a[3] if a=[1,4,6,7,9,66,4,94].
What is a python module?
Explain what is the common way for the flask script to work?
What is multithreading? Give an example?
What python frameworks do you know?
Is there any way to kill a thread in python?