划分标准,比如大于5000的赋值为1,小于5000的赋值为0,how to do?help me plaese
就是条件判断呀
if(a>5000): a=1 elif(a<5000): a=0
num = 5 if num>5000: num=1 elif num<5000: num=0