I've been trying to figure out why I lose the second item in my list each time I iterate through it.
def main():
    _data = [0,1,3,0,5,5]
    print(_data)
    # Convert items in the list into strings
    for item in _data:
        item = str(item)
        print(item)
        _data.append(item)
        _data.pop(0)
    print(_data)
main()
 
    