Sollicitatievraag bij Mobifly (India)

What is pass in Python?

Antwoord op sollicitatievraag

Anoniem

14 okt 2021

The pass keyword represents a null operation in Python. It is generally used for the purpose of filling up empty blocks of code which may execute during runtime but has yet to be written. Without the pass statement in the following code, we may run into some errors during code execution.