Posts by Daniel Lawand • 1 point
2 posts
-
0
votes2
answers91
viewsA: Error performing @pytest.mark.parametrize
RESOLVED: import math class Bhaskara: def delta(self, a, b, c): return b**2 -4*a*c def main(self): a_digitado =float(input()) b_digitado =float(input()) c_digitado =float(input())…
python-3.xanswered Daniel Lawand 1 -
0
votes2
answers91
viewsQ: Error performing @pytest.mark.parametrize
Where am I going wrong? Bhaskara.py import math class Bhaskara: def delta(self, a, b, c): return b**2 -4*a*c def main(self): a_digitado =float(input()) b_digitado =float(input()) c_digitado…
python-3.xasked Daniel Lawand 1