Posts by Victor • 25 points
2 posts
-
1
votes1
answer88
viewsQ: transform data from a Dataframe column into a single string
I have a Dataframe with a column that has different texts in each row and I intend to join all the lines in a single string, it is possible? the idea is to turn all the sentences in the column into…
-
1
votes1
answer26
viewsQ: return more recent files to a folder
I am trying to return the path and modification date of all files in a folder, but I am not able to return the date, only the path. code so far: from pathlib import Path import pandas as pd…