Posts by Ralf Júnior • 29 points
4 posts
-
0
votes1
answer28
viewsQ: Futsal (error) - Python
Good people, I’m making a futsal code and I’m having certain obstacles with it. Currently, I am studying Python and for the first time applying POO, so I need you to give me a light on how to…
-
1
votes2
answers2327
viewsQ: Python code error - Syntaxerror: can’t assign to Function call
I’m doing a futsal game with POO, and I went to do a function outside the class and in the global scope assigns the vector lista_team = [], only when I’m trying to run the stage where the code is,…
-
0
votes1
answer90
viewsQ: Exercise - Calculation of bhaskará
a=int(input("Digite o valor de A: ")) b=int(input("Digite o valor de B: ")) c=int(input("Digite o valor de C: ")) delta=float(((b**2)-4*a*c)) r1=float((-b +(delta ** (1/2))/2) r2=float((-b -(delta…
-
-1
votes2
answers835
viewsQ: Python Spent Fuel Exercise
I’m starting in Python and I’m doing some exercises, I did this spent fuel, but it does not show me the end of the program, ie the result, what is the error? nome = input("Qual é o seu nome?") gasto…