Challenge: 1 "1000 Points"

Desired output: The code compares correctly between the values of “a” and “b”
 avatar
user_4476291
python
a year ago
297 B
13
Indexable
### 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