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) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson