If I have a list in python, how can I create a reference to part of the list? For example:
myList = [\"*\", \"*\", \"*\", \"*\", \"*\", \"*\", \"*\", \"*\",
There's nothing in python that really does what you want. Basically you want to write some sort of proxy object.