0
点赞
收藏
分享

微信扫一扫

【办公自动化】在Excel中按条件筛选数据并存入新的表2.0(文末送书)

这里写自定义目录标题

String smoothing

picked_tasks 来自dataframe

window_size = 5
window_strings = deque(maxlen=window_size)
 eliminated_result = []
 for idx, current_string in enumerate(picked_tasks):
     eliminated_result.append(current_string)
     if len(window_strings) == window_size and current_string == window_strings[0]:
         for i in range(idx-window_size+1,id
举报

相关推荐

0 条评论