Boot.dev Blog ยป Python ยป How to Use the Ternary Operator in Python

How to Use the Ternary Operator in Python

By Lane Wagner on Dec 9, 2021

Last updated on Jul 20, 2022

Curated backend podcasts, videos and articles. All free.

Want to improve your backend development skills? Subscribe to get a copy of The Boot.dev Beat in your inbox each month. It's a newsletter packed with the best content for new backend devs.

Developers love concise code that’s easy to read, and that’s exactly what ternary operators are for. The ternary operator in Python lets you perform a small if/else statement in a single line. Let’s take a look at a few examples.

Example of selecting the larger number with a Pythonic ternary ๐Ÿ”—

bob_height = 6
jill_height = 7
larger_height = bob_height if bob_height > jill_height else jill_height
# larger_height = 7

You’ll notice that a ternary in Python actually looks a lot like a normal if/else statement, just jammed into one line. That’s basically what it is, except it also returns a value.

Contrast that syntax with JavaScript’s ternary, which feels a little different.

const largerHeight = bobHeight > jillHeight ? bobHeight : jillHeight;

The formal structure of a ternary ๐Ÿ”—

Now that you’ve seen an example, it’s important to understand what’s going on. As you may have gathered from the name ternary, it takes 3 operands:

  • true_val
  • condition
  • false_val
[true_val] if [condition] else [false_val]

true_val is returned if the condition is truthy, while false_val is returned if condition is falsy.

Example of checking if a number is oven or odd with a ternary ๐Ÿ”—

def is_even_message(num):
  return "Number is even!" if num%2 == 0 else "Number is odd!"

print(is_even_message(6))
# Number is even!

print(is_even_message(5))
# Number is odd!

Example of a nested ternary ๐Ÿ”—

First of all, I need to get this off my chest: please don’t nest your ternaries! It’s confusing and hard to read. That said, here’s how you can do it if you really want to.

my_account = 100
wifes_account = 200

print("We have the same" if my_account == wifes_account else "I have more" if my_account > wifes_account else "Wife has more")

Should you use ternaries in the Python programming language? ๐Ÿ”—

Generally speaking, yes. Ternaries are fantastic little bits of syntactic sugar that make code more concise and readable when used sparingly. You should probably never nest ternaries, or try to use them with anything more than a simple assignment operation. By trying to use ternaries too often, your code becomes very hard for others (or yourself) to understand later.

Find a problem with this article?

Report an issue on GitHub