Question: How to test whether all member in a list are all positive?

Hello! I want to test a list whether all members in the list are positive. what should I do? for example:

L1:=[1,2,5,6,9]:

so the members in L1 is all positive! so the consequence is true!
L2:=[0,-2,5,6,9]:

It whould be false in my code.

Please Wait...