I am trying to figure out if there is a way to get a logical list through comparison in Python 3. Basically what I want to input is this
x = [1,2,3,4,5,6,7,8,9]
xlist = 4<=x
and what I am looking to output is a list that would look like this
xlist = [False,False,False,True,True,True,True,True,True]
Is there anyway to do this simply without using list comprehension like
xlist = [4<=i for i in x]
Is there anything that would be more efficient with larger lists?
Thanks
