LIST=[]

def INAX(MIN,MAX):
    
    for A in range(MAX):
        LIST.append(f'{MIN+A}')
    return LIST

def AXIN(MIN,MAX):
    
    for A in range(MAX-MIN+1):
        LIST.append(f'{MAX-A}')
    return LIST

print(INAX(1,3))
print(AXIN(0,3))
        
        
    

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: