Posts by Vitor R. • 1 point
2 posts
-
0
votes2
answers25
viewsA: Search for specific directories containing the entire path
You can use python’s glob.glob() to get all folder names and with os.path.abspath() . Example: import os import glob a = glob.glob("*_novo") #Lista com os nomes das pastas que contem _novo…
-
0
votes3
answers2351
viewsA: Import csv with pandas. Column values with semicolon. What to do?
In the engine command add the engine parameter, it would look like this: df = pd.read_csv('GUAXUPE.csv', header = None, sep = ',', encoding = 'utf-8',engine='c') In the read_csv documentation it…