Posts by Fagner Junqueira • 69 points
4 posts
-
0
votes0
answers35
viewsQ: Flutter: Execution failed for task ':app:compileReleaseJavaWithJavac'
I’m trying to build an android app on Flutter and it returns me this error. I already updated the SDK, already checked the environment variables and nothing. Someone knows what I can do?…
-
6
votes3
answers2675
viewsQ: Is it possible to include more than one variable per input in Python?
In C I can do it: printf("Informe 3 numeros'); scanf("%d%d%d", &a,&b,&c); Can I do a similar process in Python? I did some searches and found that I can do so: a,b,c = input('informe 3…
-
-5
votes3
answers8551
viewsA: Get the number of digits in a number
Dude, I did it without using "if" or mathematical expression, just treating the numbers as string and using the "Len" parameter". def contador(n): contagem = len(n) return contagem n =…
-
-3
votes2
answers72
viewsQ: Save form data
Guys, I’m new at this, I made an html form and I can’t save the data, how do I do that?