GE
Size: a a a
GE
RY
GE
RY
ДВ
df['len_text'] = list(map(len, df['text']))
A
df['len_text'] = df['text'].apply(lambda x: len(str(x)))
GE
df['len_text'] = list(map(len, df['text']))
GE
```df['len_text'] = list(map(len, df['text'].astype(str)))```
ДВ
GE
RY
df['len_text'] = list(map(len, df['text']))
RY
GE
IG
IG
GE
IG