Answers for "python dataframe select cell"

2

how to select a single cell in a pandas dataframe

# how to select a single cell in a pandas dataframe

import pandas as pd

old = pd.DataFrame({'A' : [4,5], 'B' : [10,20], 'C' : ['cell wanted',50], 'D' : [-30,-50]})
var = old['C'].values[0]

print(var)
Posted by: Guest on September-27-2021
5

df fetch value

val = d2['col_name'].values[0]
Posted by: Guest on April-07-2020

Code answers related to "python dataframe select cell"

Browse Popular Code Answers by Language