I have a numpy array of folowing structure
sb = np.genfromtxt(open('HomePage/TodayList.txt', 'rb'),
delimiter=',', skiprows=0,
dtype=[('DataBase', np.str_, 16), ('Mode', np.str_, 16),
('SMB', np.str_, 16),('Desc', np.str_, 128),
('Res', np.str_, 16), ('RightCnt', np.float64),
('PercentCnt', np.float64), ('ModelType', np.float64)])
The 6th column 'PercentCnt' which can be accessed by name 'PercentCnt' contains numbers from 0 to 50
the 7th column 'ModelType' contains numbers from 0 to 5 so i need to remove or delete array rows which match these criteria 'PercentCnt'<50 and 'ModelType'<2.