T=(("Ajay",90),("Peter",45),("Jack",80))
print("All students : ", T)
R=()
for t in T:
if(t[1]>=70):
R+=(t,)
print("Students with score more than 70 : " , R)
Output:
All students : (('Ajay', 90), ('Peter', 45), ('Jack', 80))
Students with score more than 70 is (('Ajay', 90), ('Jack', 80))
In the above code, we have created the matrix T, with student name and marks. And then printed the value. The filter is using the greater than sign and store to an array. Then print this matrix.
Program to filter matrix based on a condition
Output:
In the above code, we have created the matrix T, with student name and marks. And then printed the value. The filter is using the greater than sign and store to an array. Then print this matrix.
need an explanation for this answer? contact us directly to get an explanation for this answer