I have the next DataFrame:
a = [{'x1':'a, b, c, d, e, f'}, {'x1':'a, b, c'}, {'x1':'a'}]
df = pd.DataFrame(a)
print(df)
I need to create the new column -> len_x1 in DataFrame and insert into it the amount of values in each cell.
I need the next result:
I will be grateful for help.
