0
Here is an function to return the maximum value among three positive integers. There is an error in this function. Provide an in
2 Answers
+ 2
code pls
0
def max3bad(x,y,z):
  maximum = 0
  if x >= y:
    if x >= z:
      maximum = x
  elif y >= z:
    maximum = y
  else:
    maximum = z
  return(maximum)



