Design a logical expression equivalent to the following statement: x is a list of three or five elements, the second element of which is
Design a logical expression equivalent to the following statement:
x is a list of three or five elements, the second element of which is
x
In python3 this would be: type(x)==bool see example.
type(x)==bool