python读取excel文件每一行第一个数
时间: 2023-05-25 20:03:30 浏览: 122
python读取excel
可以使用Python中的pandas库读取excel文件,并且使用iloc函数来获取每一行的第一个数。示例代码如下:
```python
import pandas as pd
# 读取excel文件
df = pd.read_excel('example.xlsx')
# 遍历每一行
for i in range(len(df)):
# 获取该行第一个数
first_num = df.iloc[i, 0]
print(first_num)
```
其中,example.xlsx是待读取的excel文件名。df是pandas库中读取excel文件后得到的DataFrame对象。每次循环通过iloc函数获取第i行第0列的数,即该行第一个数。注意,Python中的数组下标从0开始。
阅读全文