Posts by Ângelo • 11 points
1 post
-
0
votes3
answers1219
viewsQ: What is wrong with the Python code?? Bhaskara
import math def Bhaskara(): a = int(input('Digite um valor para A ')) b = int(input('Digite um valor para B ')) c = int(input('Digute um valor para C ')) #(-b +- {-b² - 4 * a * c} ) / 2 * c operacao…