In python 3.8
nums = input("Please enter a list of numbers: ").split()
new_nums = [x for x in nums if 0 < float(x) < 100]
print("The numbers between 0 and 100 are: " + " ".join(new_nums))
When you said numbers between 0 and 100, I didn't know if that was inclusive or exclusive so I made it exclusive. I hope this helps!