On Mon, Oct 20, 2014 at 1:49 PM, Seymore4Head <Seymore4Head@hotmail.invalid> wrote: > For starters I would like to know if you can make a single item list > and then turn it into a 2 item list. Is there a command for that?
You mean like this? >>> the_list = ['first_item'] >>> the_list.append('second_item') >>> the_list ['first_item', 'second_item'] -- https://mail.python.org/mailman/listinfo/python-list