我正在尝试将Excel工作簿中的导入数据获取到列表中,但出现错误。请在下面查看我的代码和错误。
import pandas as pd
string_a = []
df = pd.read_excel('C:/Users/mr938ur/Documents/EROA Pull/Example.xlsm',
header = None,
sheet_name = 'Sheet 1'
)
string_a <- df.iloc[0,0]
Traceback (most recent call last):
File "<ipython-input-53-0859a4b01acd>", line 13, in <module>
string_a <- df.iloc[0,0]
TypeError: bad operand type for unary -: 'str'
当我检查df.iloc [0,0]的类型和值时,得到以下信息:
df.iloc[0,0]
Out[55]: 'Example string'
type(df.iloc[0,0])
Out[56]: str
我希望能够将字符串存储到列表中,但是它不起作用。
任何帮助将不胜感激。谢谢!
答案 0 :(得分:0)
尝试一下是否可行:
string_a = df.iloc[0,0]