Tall in CM | Best sport |
< 159 | Tennis |
between 160 & 175 | Football aka Soccer |
> 175 | Basketball |
for i in range (1,4): height = float(input("Enter your height in CM: ")) if (height<165): print ("The best sport is Tennis") elif (height ≥ 166 and height ≤ 175): print ("The best sport is Football") elif (height >175): print ("The best sport is Basketball")