filter rows from data where column salary has string datatype
idk how to ask Question maybe wrong way! id name salary 0 1 shyam 10000 1 2 ram 20000 2 3 ravi abc 3 4 abhay 30000 4 5 karan fgh *** expected *** id name salary 2 3 ravi abc 4 5 karan fgh >Solution : We can use str.contains as follows: df_out =… Read More filter rows from data where column salary has string datatype