Answers for "One line if else statement, with 3 conditions: python"

11

python if else one line

x = 'foo' if bar else 'baz'
Posted by: Guest on April-05-2020
0

multiple if else condition in single line in python

>>> i=100
>>> a = 1 if i<100 else 2 if i>100 else 0
>>> a
0
>>> i=101
>>> a = 1 if i<100 else 2 if i>100 else 0
>>> a
2
>>> i=99
>>> a = 1 if i<100 else 2 if i>100 else 0
>>> a
1
Posted by: Guest on May-05-2021

Code answers related to "One line if else statement, with 3 conditions: python"

Python Answers by Framework

Browse Popular Code Answers by Language