Posts by abitencourtjunior • 24 points
3 posts
-
-1
votes1
answer258
viewsA: Request made to Spring Boot is returning another endpoint API
I believe that in the query you are doing, the relationship may be bringing everything, and the fact of bringing from /phone the answer from /profile is SQL.
-
0
votes2
answers107
viewsA: convert strings to python
Cassio, if you split the line it will generate an array of three positions, in which to do the following operations: 1 - Take the 1st and 3rd term of the array and convert them to int(arr[position])…
-
1
votes1
answer255
viewsA: Generate Python CSV from txt
Fala Johann, What is happening is the parameter you are putting in the CSV constructor. with open(arquivoSaida, 'wb') as csvfile: spamwriter = csv.writer(csvfile, delimiter=',',…