📅  最后修改于: 2022-03-11 14:46:50.249000             🧑  作者: Mango
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'