I can do a control loop like this in C++
int case =0;
while( case<0 && case>20){}
How am i suppose to implement this in Python? I didn't get any errors if i wrote this, the problem is it doesn't enter the while loop when case<0 and case>5
while case<0 & case>5: