Python Pass Statement

1/8/20241 min read
Importance of built in functions in python

Python Pass Statement

If you want to create code that does a particular thing but don’t know how to write that code yet, put that code in a function then use pass. Once you have completed the bigger picture of the code, start to go back to the function and replace pass with the code for that function. This will prevent your thoughts from being disrupted. Above is an example