Answer:
def printRange(start, stop, steps = 1):
    list1 = []
    if steps > start or stop:
        print("Steps is larger than start and stop value")
        return None
    if int(start) < int(stop):
        while start < stop:
            start = start + int(steps)
            list1.append(start)
        print(list1)
    elif start > stop:
        while start > stop:
            stop = stop + int(steps)
            list1.append(stop)
        print(list1)
    elif start == stop:
        print(start)
    else:
        print("Values are not integers.")
for easier viewing: 
https://www.codepile.net/pile/e95verLk
If you need help understanding comment below.
 
        
             
        
        
        
 Is this technology? Let me know so I can help you!!
        
             
        
        
        
<span>It is false that live preview is available on a touch screen. Life preview refers to cameras mostly, and to the fact that its display screen can be used as a viewfinder. Viewfinder is what you look through when you are using a camera to take a photo, or to focus on something. So, no, touch screen devices do not have this feature available, only the "old-school" cameras do.</span>