【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
- python讀取兩個excel資料檔案輸出整理好以後的excel資料檔案PythonExcel
- 如何在python中讀取配置檔案Python
- python讀取大檔案Python
- python小白檔案讀取Python
- python 讀取文字檔案Python
- Python讀取Excel表格PythonExcel
- Python讀取大量Excel檔案並跨檔案批次計算平均值PythonExcel
- 說說在 Python 中,如何讀取檔案中的資料Python
- python如何讀取大檔案Python
- Python批量匯入Excel資料到MySQLPythonExcelMySql
- Python讀寫EXCEL檔案常用方法大全PythonExcel
- 前端讀取excel檔案前端Excel
- python對Excel的讀取PythonExcel
- python中按照資料夾中檔案的排列順序讀取檔案內容Python
- python讀取excel所有資料(cmd介面)PythonExcel
- 學習筆記(30):Python資料清洗實戰-Excel檔案讀寫筆記PythonExcel
- python中xlrd庫如何實現檔案讀取?Python
- Python 高階技巧:深入解析讀取 Excel 檔案的多種方法PythonExcel
- Python 讀取HDF5檔案Python
- python怎麼讀取配置檔案Python
- python解壓並讀取檔案Python
- python讀寫excel檔案簡單應用PythonExcel
- EasyExcel庫來讀取指定Excel檔案中的資料Excel
- 【python系統學習17】python中的檔案讀寫Python
- 使用openpyxl庫讀取Excel檔案資料Excel
- Python中檔案讀取與儲存程式碼示例Python
- Python生成器讀取大檔案Python
- python檔案建立、讀取和寫入Python
- python讀取yaml配置檔案的方法PythonYAML
- 透過python讀取ini配置檔案Python
- python 使用字典讀取CSV檔案Python
- python檔案讀取 readlines()方法之坑Python
- python-geopandas讀取、建立shapefile檔案Python
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- Python中的檔案讀寫Python
- Python中Spark讀取parquet檔案並獲取schema的JSON表示PythonSparkJSON
- 讀取本地Excel檔案生成echartsExcelEcharts