貼上一個做資料清洗時寫的程式碼,
做資料處理時,原始檔案資料在進行處理時需要轉換成一定格式,
原始檔案資料:123.txt
1,3,4 2,3,5 1,2,3,5 2,5
使用Python轉換成二維清單:
#!/usr/bin/env python #coding=utf-8 def loadDataSet(): file = open("123.txt", "r") List_row = file.readlines() list_source = [] for list_line in List_row: list_line = list(list_line.strip().split(',')) s = [] for i in list_line: s.append(int(i)) list_source.append(s) return list_source
執行程式後結果如下:
[[1,3,4],[2,3,5],[1,2,3,5],[2,5]]
以上是如何使用python將檔案資料轉換成二維列表的詳細內容。更多資訊請關注PHP中文網其他相關文章!