×

Python Tutorial

Python Basics

Python I/O

Python Operators

Python Conditions & Controls

Python Functions

Python Strings

Python Modules

Python Lists

Python OOPs

Python Arrays

Python Dictionary

Python Sets

Python Tuples

Python Exception Handling

Python NumPy

Python Pandas

Python File Handling

Python WebSocket

Python GUI Programming

Python Image Processing

Python Miscellaneous

Python Practice

Python Programs

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 »



Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

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