2024-03-24 15:45:15 -04:00

371 B
Raw Blame History

+++ title = "python or [default]" date = 2023-10-02 [taxonomies] tags= ["shortnotes"] +++

Did you know that you can use the “or” keyword in python to set a “default” for a variable?

variable_name = value_or_none() or "default value!" 

Over five years since I started using Python, and Im only learning this now. I wish I knew about it sooner.