有人可以幫助我用python打開一個excel文件,並選擇一個帶數字的特定列,我想將這些數字一個接一個地保存在變量中。重點是保存號碼並將其發佈到網站上。打開一個excel並選擇一個特定的列
-1
A
回答
0
您可以使用xlrd模塊讀取excel文件。
我已經考慮列是0,也表0
import xlrd
column = 0
worksheet = xlrd.open_workbook('test_file.xls')
handle_sheet_0 = worksheet.sheet_by_index(0)
data = []
for row in range(handle_sheet_0.nrows):
data.append(handle_sheet_0.cell(row, column).value)
0
可以使用xlrd包
import xlrd
file_location = "C:/Users/Desktop/my.xlsx"
wrk_book = xlrd.open_workbook(file_location) # opening the file
sheet = wrk_book.sheet_by_index(0) # selecting the sheet number
cell = sheet.cell_value(0, 0) # Selecting a particular cell
col = 0 # If you want to select column A
values = list([])
for row in range(sheet.nrows):
print(sheet.cell_value(row, col))
values.append(sheet.cell_value(row, col)) # you can store the value in a list
+0
print sheet.cell(row,col).value 在這個命令我想用變量i替換行,只需將行替換爲i不起作用。有什麼建議麼 ? – JSN
相關問題
- 1. 如何打開一個特定的目錄並使用C#選擇一個特定的文件
- 2. OpenXML選擇一個特定的列
- 3. Excel VBA代碼來選擇一個特定的列
- 4. MySQL選擇所有,並從一個特定的ID開始
- 5. 選擇一個特定的輸入並添加一個事件
- 6. 檢查一個特定的Excel文件在打開多個Excel文件時是否打開並激活它
- 7. 選擇所有列並按一個特定列區分
- 8. 打印一個數組列表,並選擇一個索引?
- 9. 導出jTable選擇excel並打開excel
- 10. Excel:將選擇移動到特定列中的下一個空行,並按日期和類型列舉選擇
- 11. 在一個特定的選項選擇
- 12. 鍵綁定打開一個新選項卡並打開FuzzyFinder
- 13. 打開文件,並在文件中選擇特定的列
- 14. 打開一個文本框上選擇一個單選按鈕
- 15. Excel中選擇一個值從陣列
- 16. 在EXCEL範圍內選擇一個特定的單元格
- 17. 選擇一個特定的表在VSTO Excel加載
- 18. VBA EXCEL - 「當」你選擇一個特定的單元
- 19. 打開,選擇並添加一個表格內的.jpg文件
- 20. 不能選擇一個特定的類
- 21. Python,選擇一個特定的行
- 22. jquery選擇 - 一個特定的標籤
- 23. Powershell選擇一個特定的值
- 24. 打開一個標籤集到一個特定的標籤
- 25. 如何讓一個帖子打開一個特定的鏈接
- 26. MS Access打開一個表單到一個特定的ID
- 27. 打開一個按鈕的HTML選擇列表中單擊
- 28. Excel宏選擇2個特定單詞
- 29. 不要打開fancybox點擊一個特定的下拉選項
- 30. 點擊鏈接打開表格,並選擇一個值
是否單獨打開excel文件? – JSN
是的。 xlrd.open_workbook('test_file.xls')行將採用** test_file.xls **文件。 – Nirmi
但測試文件的路徑.xls沒有提到對 – JSN