题解 | #牛客网连续练习题目3天及以上的用户#

牛客网连续练习题目3天及以上的用户

https://www.nowcoder.com/practice/4d77709a0ea2482282ee86852fe32f06

from datetime import timedelta
import pandas as pd
pd.set_option('display.width',300)
pd.set_option('display.max_rows',None)
pd.set_option('display.max_columns',None)
file = pd.read_csv("nowcoder.csv", sep=',', dtype=object, parse_dates=True)
file['date'] = pd.to_datetime(file.date).dt.date
new = pd.merge(file, file, how='left', on='user_id')
new['diff'] = new.date_y - new.date_x
a = new.groupby(['user_id','date_x']).max()
b = a[a['diff']>=timedelta(days=2)].groupby('user_id')['diff'].max()
print(b)

全部评论

相关推荐

10-28 15:45
门头沟学院 C++
西南山:海康威视之前不是大规模裁员吗
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务