Challenge: 1 "1000 Points"
Desired output: The code compares correctly between the values of “a” and “b”### Challenge: 1 "1000 Points" a =+ 33 b = 33 if b < a: print("b is greater than a") elif b < a: print("b is less than a") elif a == b. print("a and b are equal") else: print ("ABCD") ### Desired output: The code compares correctly between the values of “a” and “b”
Leave a Comment