📅  最后修改于: 2022-03-11 14:47:06.296000             🧑  作者: Mango
def ran_check(num,low,high):
if num in range(low,high):
print(num ,"is in a range")
else:
print(num ,"is out of the range")
ran_check(100,90,200)