here's a newb Python question that I'm sure is a no-brainer for the pros. I have an object OddStream that is called from the function print_from_stream to create a list of odd numbers starting from 1. It works find the first time but when calling it a second time the new list starts from the last number of the first list + 2.
What should I write to reset OddStream? BTW, this is only a portion of the code, but it's the part that matters. Thanks if you can help.
class OddStream(object):
    def __init__(self):
        self.current = 1
    def get_next(self):
        to_return = self.current
        self.current += 2  
        return to_return 
def print_from_stream(n): 
    for _ in range(n):
        print(stream.get_next())
 
    