# Importing Libraries
import pandas as pd
# Importing dataframe
df = pd.read_csv('mydata.csv')
# Col A Value input as int
first_input = int(input('Enter Col A Value'))
# Col B value input as string
second_input = str(input('Enter Col B Value'))
# checking both column values with == sign
df[(df['Col_A'] == first_input) & (df['Col_B']== second_input)]