True Blood creator Charlaine Harris is to appear in Bluewater Productions' Female Force biographic comic series. The author - who penned the Sookie Stackhouse novels which inspired the HBO television ...
Charlaine Harris, candid and straightforward, didn't need to think twice about how "True Blood," the HBO series based on her Sookie Stackhouse novels, has changed her life. "I have a lot more money," ...
Sookie Stackhouse has returned for another bloody adventure. "Dead and Gone" is the ninth novel about the telepathic waitress from fictional Bon Temps, La., and her dealings with the supernatural ...
"Dead and Gone" (Ace, 312 pages, $25.95), by Charlaine Harris: Sookie Stackhouse has returned for another bloody adventure. "Dead and Gone" is the ninth novel about the telepathic waitress from ...
Metro US: Telepathic waitress Sookie Stackhouse is Back in ‘Dead and Gone’
Sookie Stackhouse has returned for another bloody adventure. “Dead and Gone” is the ninth novel about the telepathic waitress from fictional Bon Temps, La., and her dealings with the supernatural ...
By using a : colon in the list index, you are asking for a slice, which is always another list. In Python you can assign values to both an individual item in a list, and to a slice of the list.
What is the difference between list [1] and list [1:] in Python?
The second, list(), is using the actual list type constructor to create a new list which has contents equal to the first list. (I didn't use it in the first example because you were overwriting that name in your code - which is a good example of why you don't want to do that!)