I\'ve created a Pandas DataFrame
df = DataFrame(index=[\'A\',\'B\',\'C\'], columns=[\'x\',\'y\'])
and got this
x y A NaN
df.loc['c','x']=10 This will change the value of cth row and xth column.
df.loc['c','x']=10