1、> 、>=、<、<=:
if number >= 10000 and number >= 30000: print ("pass")
2、range()函数:
if number in range(10000, 30001) ##这里的number注意要是int类型,在脚本里很容易出错