I\'ve created a Pandas DataFrame
df = DataFrame(index=[\'A\',\'B\',\'C\'], columns=[\'x\',\'y\'])
and got this
x y A NaN
This is the only thing that worked for me!
df.loc['C', 'x'] = 10
Learn more about .loc here.
.loc