I have the following list
j=[4,5,6,7,1,3,7,5]
What\'s the simplest way to return [5,5,6,7,7] being the elements in j greater o
[5,5,6,7,7]
There is another way,
j3 = j2 > 4; print(j2[j3])
tested in 3.x