Can Python instantiate a variable and return its value or reference at the same time?
Something that would work like this
fruits = list()
fruits.append(apple = Fruit()) # (apple = Fruit()) <= Would return a reference/value
fruits.append(orange = Fruit())
apple.do_something()
fruits[1].do_something()
Obviously, you could just access objects with fruits[n], but can Python do this? Why?