【python】python初學 讀取map檔案資料到excel中
0、前言
python相關的知識,終於要開了學習的頭....所謂萬事開頭難還是很有道理的,之前一直說要學習python,看了幾眼書,翻翻部落格,一直不=不夠系統,這次想著直接從需求出發,根據需要,用到什麼學習什麼,感覺快多了
需求:keil編譯時產生map檔案,現在需要將map檔案中的Data欄位的資料才能入到excel中
1、程式碼
import xlwt
print('hello python')
row_number=0
col_number=0
book = xlwt.Workbook()
sheet = book.add_sheet('sheetname')
def zdw_write(x,row,sheet):
col = 0
for number in x:
if number != '':
sheet.write(row_number,col,number)
col = col+1
with open('HDC01_APP.map') as file_object:
for line in file_object:
if " Data " in line:
#print(line)
x=line.split(" ")
print(x)
print("\n\n")
zdw_write(x,row_number,sheet)
row_number=row_number+1
print(row_number)
book.save('bookname.xls')
2、總結
效果:
寫的過程中用到什麼就查書籍和網站,
分享下書籍:
//python-從入門到實踐
連結:https://pan.baidu.com/s/1v04jwkrmZIoKk9Zh4Ux_qQ
提取碼:pl61
相關文章
- python讀取和生成excel檔案PythonExcel
- 【Mysql】匯出資料到excel檔案中MySqlExcel
- 用Python讀取excel中的資料PythonExcel
- python讀寫excel檔案PythonExcel
- python讀取兩個excel資料檔案輸出整理好以後的excel資料檔案PythonExcel
- python讀取檔案——python讀取和儲存mat檔案Python
- 如何在python中讀取配置檔案Python
- 讀取海量資料到檔案並拆分排序排序
- python小白檔案讀取Python
- python讀取大檔案Python
- python 讀取csv檔案Python
- 【python】建立,讀取檔案Python
- python 讀取文字檔案Python
- Python讀取Excel表格PythonExcel
- 說說在 Python 中,如何讀取檔案中的資料Python
- Python讀取大量Excel檔案並跨檔案批次計算平均值PythonExcel
- WinForm讀取Excel檔案ORMExcel
- 前端讀取excel檔案前端Excel
- Python批量匯入Excel資料到MySQLPythonExcelMySql
- python如何讀取大檔案Python
- Python -讀取,儲存檔案Python
- python中按照資料夾中檔案的排列順序讀取檔案內容Python
- EasyExcel庫來讀取指定Excel檔案中的資料Excel
- python讀取excel所有資料(cmd介面)PythonExcel
- python對Excel的讀取PythonExcel
- 學習筆記(30):Python資料清洗實戰-Excel檔案讀寫筆記PythonExcel
- python中xlrd庫如何實現檔案讀取?Python
- 使用openpyxl庫讀取Excel檔案資料Excel
- PHPExcel讀取excel檔案示例PHPExcel
- Python 高階技巧:深入解析讀取 Excel 檔案的多種方法PythonExcel
- python怎麼讀取配置檔案Python
- Python 讀取HDF5檔案Python
- python解壓並讀取檔案Python
- Python讀寫EXCEL檔案常用方法大全PythonExcel
- python讀寫excel檔案簡單應用PythonExcel
- 【python系統學習17】python中的檔案讀寫Python
- Python中檔案讀取與儲存程式碼示例Python
- Golang初學:高併發時寫入資料到不同的mapGolang