用python处理csv文件的重复值

原始数据
用python处理csv文件的重复值_第1张图片

# -*- coding: utf-8 -*-
"""
Created on Thu Oct 14 22:09:50 2021

@author: Machi
"""

import pandas as pd

df = pd.read_csv('data.csv')

df1 = df['x']

你可能感兴趣的:(python)