Switch/Case multiple conditions

hi!

I have this switch here … which doesn’t seem to be working…

Power = 100;
switch(Power){
case 0<Power and Power<140 :
    trace("level1");
    play();
    //==== level 1 ====//
    break;
}

Could someone tell me what it is i’m suppose to do?

Thanks!