讀取csv檔案時,發現內容文字中也帶有逗號?!

2021-09-22 18:05:43 字數 453 閱讀 1594

近日參加2019中國高校計算機大賽大資料挑戰賽時,在讀取檔案時就吃了虧。

發現文字資料中也有逗號,導致讀取內容亂七八糟。

後經思考找到解決方案:由於原資料文字中包含逗號,會導致在讀取資料時發生錯誤,將原本屬於text的誤進行分割。可以在excel中查詢所有的逗號,然後替換成其他符號。

附:panda刪除空值行或列

dataframe.dropna(axis=0, how=』any』, thresh=none, subset=none, inplace=false)

引數axis : , or tuple/list thereof

how :

thresh : int, default none

subset : array-like

inplace : boolean, default false

返回dropped : dataframe

Python中讀取csv檔案內容方法

gg224 126.com85男 dd123 126.com52女 fgf125 126.com23女 csv檔案內容如上圖,首先匯入csv包,呼叫csv中的方法reader 建立乙個物件,由於使用print data 列印出來的內容是集合,所以要想獲取集合中某個具體值如 郵箱 需要利用列表遍歷元素...

PHP讀取csv檔案的內容

一次性讀取csv檔案內所有行的資料 file fopen windows 2011 s.csv r while data fgetcsv file print r goods list foreach goods list as arr echo goods list 2 0 fclose file...

讀取文字檔案內容

讀取文字檔案內容 param filepathandname 帶有完整絕對路徑的檔名 param encoding 文字檔案開啟的編碼方式 return 返回文字檔案的內容 public string readtxt string filepathandname,string encoding th...