Posts by Sjokolade • 77 points
3 posts
-
4
votes2
answers2259
viewsQ: Format output Excel - Python
I turn a list into a Dataframe and send it to an Excel, it’s working fine. Follow the code: Df = pd.DataFrame(Lista, columns = colunas_geradas) writer = pd.ExcelWriter('Exemplo.xlsx', engine =…
-
3
votes1
answer13093
viewsQ: Difference between NULL, empty and Python blank
I’m making a Data Quality that receives a list with data from a Database and I have two rules: Null fields: Fields that are filled with the word NULL White/empty fields: Fields that come blank or…
-
0
votes2
answers495
viewsQ: Type of list elements - Python
I have two lists of different sizes. The first is a list of lists. Where I need to compare the type of elements of this first list list with another list containing data type (str, int, float,..).…