1. 학습
  2. /
  3. 강의
  4. /
  5. Intermediate Python

Connected

연습 문제

Warmup

To experiment with if and else a bit, have a look at this code sample:

area = 10.0
if(area < 9) :
    print("small")
elif(area < 12) :
    print("medium")
else :
    print("large")

What will the output be if you run this piece of code?

지침

50 XP

가능한 답변