Consider a sample dataframe
df11 = pd.DataFrame({'A': ['1'+'_'+'2']})
I want to split column values to list in the respective rows and convert into integer. I am using the below code, the output values are in the form of string. How can i convert into integer
df11["Timetaken"] = df11['A'].str.split('_')
current output column i have is like below
I want to convert the string of values to integer or float
