You can try something like this:
df = pd.DataFrame(['["399866273","12444645","162497334"]'], columns = ['Column_ObjectType'])
df.dtypes
#output
Column_ObjectType object
dtype: object
df[['Value1','Value2','Value3']] = df.Column_ObjectType.str.split(",", expand=True)
df.head()
#output
Column_ObjectType Value1 Value2 Value3
0 ["399866273","12444645","162497334"] ["399866273" "12444645" "162497334"]
df['Value1'] = df.Value1.apply(lambda x: x[2:-1])
df['Value2'] = df.Value1.apply(lambda x: x[1:-1])
df['Value3'] = df.Value1.apply(lambda x: x[1:-1])
df.head()
#output
Column_ObjectType Value1 Value2 Value3
0 ["399866273","12444645","162497334"] 399866273 39986627 39986627
numpy.ndarraythen you just wantmy_df['column'].values, if you want a list, then you just wantmy_df['column'].to_list()str. How did you produce this string? You need to provide a minimal reproducible example.type(my_object)