首页 > 解决方案 > 使用python在excel中自动化手动分组过程

问题描述

如何使用 python 在 excel/csv 中自动化我的手动过滤和分组过程

以下是我拥有的数据。

My monthly details
NEFT paid 100 for recharge
RTGS paid 1000 for recharge
Reversal Neft 100 as the provided number was wrong 
NEFT paid 10000 for food and drinks
RTGS received 1000000 for a personal loan
salary received 30000
0000123/merchant payment

目前我正在手动过滤它并相应地对其进行分组。我可以使用 python 自动化这个过程吗?

下面是预期的结果

My monthly details    Remarks
NEFT paid 100 for recharge    Neft
RTGS paid 1000 for recharge   RTGS
Reversal Neft 100 as the provided number was wrong    Reversal
NEFT paid 10000 for food and drinks   NEFT
RTGS received 1000000 for a personal loan RTGS
salary received 30000 SALARY
0000123/merchant payment  fund transfer

标签: excelpython-3.xcsv

解决方案


推荐阅读