Kingsway to Python: Lists
lis00.py - simple range object creation- in Python3 it's not a list
lis01.py - range object creation (arithmetic progression)
lis02.py - arithmetic progression creation: range()
lis03.py - creation of lists
lis04.py - access to list elements using indices
lis05.py - list concatenation and slice assignment
lis06.py - list appending, inseting and revovement of elements
lis07.py - list size and elements counting
lis08.py - nest lists (containing other lists)
lis09.py - in development ...
lis10.py - huge list making
lis11.py - function insert()
lis12.py - function extend() list using another list
lis13.py - delete list element, remove by value
lis14.py - delete list element, remove by value
lis16.py - list sorting and reverse
lis19.py - in development ...
lis20.py - a list of the Fibonacci numbers
lis22.py - Using Lists as Stacks
lis23.py - in development ...
lis25.py - Using Lists as Queues
lis30.py - filter of sequence
lis31.py - map of sequence
lis32.py - in development ...