Posts by weslly Oliveira • 1 point
2 posts
-
0
votes2
answers392
viewsA: I need to join several excel files in a single split into python folders. I did this method but wanted to create a function:
I hope it helps you. import pandas as pd ufv_names = ['CB1','CB2','CB3'] def unir(dir, mes): files = [_load_file(f'{dir}PR_{name}_{mes}.xlsx') for name in ufv_names] names_files =…
-
0
votes1
answer96
viewsA: How to use attributes of a subclass of an abstract class?
Assign the value of mixedList[i] to a variable before the if, as final item = mixedList[i]; The item will have the type as dynamic, and will be set at runtime.…