I have a dataset like below. I want to perform a filtering process according to a specific value in one of the columns.
For example, this is the original dataset:
Name ... Age ...... Phone_Type
Joun .... 25 ......... iPhone
Alex ..... 20 ....... Samsung
Sam .....60 ....... Nokia
David ...30........ iPhone
......................................
I want to filter all records to show only the users who are using "iPhone" by Python.
The Result should be:
Joun .... 25 ......... iPhone
David ...30........ iPhone