I am using this kinda dataframe:
A B C D E
0 1 5 0 0
2 3 1 0
3 5 0 7
1 1 3 1 2
3 3 3 3
2 5 1 2 1
If user input A = 0
, B = 2
, I need to show C = 3
D = 1
and E = 0
OR \n
If user input A = 1
, B = 1
, I need to show C = 3
D = 1
and E = 2