using else in list comprehension code example
Example 1: list comprehension python if else
[statement if condition else statement for _ in iterable_object]
#statement are without assignment
Example 2: can list comprehenios contain else
["Even" if i%2==0 else "Odd" for i in range(8)]