Posts by Willian De Angelo • 11 points
7 posts
-
0
votes1
answer244
viewsQ: Storing input data in mysql + Javascript
I’m trying to store the input data below with javascript but the same is not storing: usuers.html file <input type="text" name="nome" id="nome"> <input type="text" name="email"…
-
0
votes1
answer70
viewsQ: Conversion of PDF images with Python
I am trying to convert all images from a directory into a single PDF. However I am having difficulties. When I run my system it gives the error below, it tries to read the file . py also. from PIL…
-
0
votes1
answer815
viewsQ: Save array to python CSV
I wrote the code below to store some data in a dataframe, soon after I converted it into an array, but when saved the same in CSV file, the same jumps lines in saved file import pandas as pd import…
-
0
votes1
answer132
viewsQ: How to handle "Nan" values returned from a Dataframe
I wrote the code below to select 1 column of each CSV file, but it returns all values like NaN. How I treat it so it returns the right values? import pandas as pd df1 = pd.read_csv("CSSS.csv",…
-
1
votes2
answers327
viewsQ: Delete Root Directory in Python
I am creating a system that erases and creates again the folders of a directory until the creation of the folders is all ok, but I tried to use the calling below to delete a Root directory of my…
-
0
votes1
answer232
viewsA: Add Entries to a Multidimensional List using input in Python
I believe that you need to use a repetition loop to request the data through input and the append function to add the items in the list, would be more or less in the example below Note: you will…
pythonanswered Willian De Angelo 11 -
0
votes1
answer177
viewsQ: Function to print directory on a Python Label
I created a function that opens a file with Tkinter + filedialog, so far so good. But I need to print the directory of the selected file on a label. Follows function: from tkinter import * from…