how to find numbers between two numbers in python code example

Example 1: How to get random int between two numbers python

import random
print(random.randint(10,100))

  this will output somthing between 10 and 100

Example 2: how to print numbers between two numbers in pythom

items = []
for i in range(100, 401):
    s = str(i)
    if (int(s[0])%2==0) and (int(s[1])%2==0) and (int(s[2])%2==0):
        items.append(s)
print( ",".join(items))

Example 3: pyhton between

if 10000 <= number <= 30000:
    pass