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

17 lines
371 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

+++
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?
```py
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.