I have a fataframe like this:
test = {'text': [
('tom', 'tom', 'TOM is a good guy.'),
('Nick','nick', 'Is that Nick?')
]}, {'text': [
('juli', 'juli', 'Tom likes juli so much.'),
('tony', 'tony', 'Steve and Tony listen in as well.')
]}
df_test = pd.DataFrame(test)
I want to lowercase the strings in the column 'text'. Any suggestions?