Generation

generate functionWed, 08 Mar 2023

データフレームの全レコードに含まれる「=====」のレコードを削除したい

def remove_dash(x): try: if x =='=====': return None else: return x except: return None df.applymap(remove_dash)

Want to kickstart your project?Use the new AI Studio to create your code