So currently, I ask the user for the column name input and the row input but I don't know how to get the cell value.
import pandas as pd
data_column = input("what column do you want to choose")
print(data_column)
data_row = input("What row do you want to choose")
print(data_row)
I have tried with iloc and loc but it doesn't return the cell value.