Doubt about Editing DataFrame

Untitled72 I want to update the DataFrame with the changes I make using the DataFrame editor.

Please include your the main part of code in the post so everyone can follow along later when your post is not available. This is meant to be a forum for learning. In this case there was not many lines so you can just include it.
For the record, this is what is shared:

import numpy as np
import pandas as pd
np.random.seed(0)
df = pd.DataFrame(np.random.randint(0,100,(3,3)))
print(df)
df.style.format('<input name="df" value="{}" />')

There is no DataFrame Editor there. That is a Pandas styler object, see Table Visualization where the title clearly states it is for display. It is not meant to be interactive.

Maybe look at itables or customize things with ipywidgets.

I there any way to make it interactive and update the dataframe?

Yes, I told you in the last sentence about some options you could look into.

Yes,I got a solution using ipywidgets button click.Thanks for helping.