Answers for "select specific cell in pandas dataframe"

0

python return value from single cell dataframe

import pandas as pd

data = ["thing"]
df = pd.DataFrame(data)

print(df.values)
print(df.values[0])
print(df.values[0][0]) #Get first element each time you want to remove the "[]" from a SINGLE value

>>>[['thing']]
>>>['thing']
>>>'thing'
Posted by: Guest on May-17-2021

Code answers related to "select specific cell in pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language