[Python] 279 pandas 単独の要素の値を取得

メモ書き。

print(df.iat[2, 1])

# 代入も可能
df.iat[1, 0] = 50