读取csv文件时,发现内容文本中也带有逗号?!

读取csv文件时,发现内容文本中也带有逗号?!

近日参加2019中国高校计算机大赛大数据挑战赛时,在读取文件时就吃了亏。
发现文本数据中也有逗号,导致读取内容乱七八糟。

后经思考找到解决方案:由于原数据文本中包含逗号,会导致在读取数据时发生错误,将原本属于text的误进行分割。可以在Excel中查找所有的逗号,然后替换成其他符号。

附:panda删除空值行或列
DataFrame.dropna(axis=0, how=’any’, thresh=None, subset=None, inplace=False)

参数
axis : {0 or ‘index’, 1 or ‘columns’}, or tuple/list thereof
how : {‘any’, ‘all’}
thresh : int, default None
subset : array-like
inplace : boolean, default False
返回
dropped : DataFrame

你可能感兴趣的:(读取csv文件时,发现内容文本中也带有逗号?!)