Posts by GigaFrota • 56 points
8 posts
-
0
votes3
answers81
viewsA: How do I resolve this error by trying to delete a specific node from a chained double list?
I believe the implementation of the delete function is missing. This error occurs when you have the method call, but you do not have the implementation. It is implemented?
-
0
votes1
answer198
viewsA: How to Suspend a Process-Specific Thread (.exe) in C++?
From what I understand you are only doing a double check in case the pid does not match the name of the correct process? Because theoretically only with the PID can you suspend the process. What I…
-
0
votes1
answer305
views -
0
votes2
answers390
viewsA: Open file with 2 clicks in a Python program
You can create a file . bat calls python and associate the . txt files to your program . bat. bat file. python programa.py %1 This way is passed the name of the file you opened is passed as…
-
0
votes1
answer208
viewsA: Make attachment system with my python email sender
Uses a python native library called email With it you already format your email, reread attach calls to attach files and send. Follow the examples of the python website itself…
-
1
votes1
answer92
viewsA: Error inserting CSV data into Mysql with Python
At first the code is OK. From the file print . csv I believe the error is the blank line between the header and the first line. Place a check if the line is empty for row in csv: if len( row ) == 0:…
-
0
votes2
answers1038
viewsA: Python - creating table
You can use a python tuple to do this. ##Primeira X, segunda Y tabela = [ (10,48 ), ( 10,50 ), (20, 30 ) ] tabela[0] would return (10,48) If you want to access X, you only need to access the first…
-
0
votes1
answer85
viewsA: Development of a C++ canteen
Come on, error is occurring because the types of the variables are different. Quantity is a variable of type identity* and student is a variable identity:student:*. Even though in the statement you…