Python program to filter matrix based on a condition

Here, we are going to learn how to filter matrices based on student marks (> 70) in Python?
Submitted by Shivang Yadav, on February 22, 2021

Matrix in python is a two-dimensional data structure which is an array of arrays.

Program to filter matrix based on a condition

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.

Python Array Programs »






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.