

def to_list_for_input(item_list):
    new_item_list = list(item_list)
    new_item_list.insert(0,None)
    return new_item_list