Python Programming for Beginners by Cannon Jason

Python Programming for Beginners by Cannon Jason

Author:Cannon, Jason
Language: eng
Format: epub
Tags: Python
Published: 2014-08-27T16:00:00+00:00


Resources

DRY: https://en.wikipedia.org/wiki/Don%27t_repeat_yourself

Documentation for the help() built-in function: https://docs.python.org/3/library/functions.html#help

Docstring Conventions (PEP 257): http://legacy.python.org/dev/peps/pep-0257/

Chapter 5 - Lists

So far you have learned about the string, integer, float, and boolean data types. A list is a data type that holds an ordered collection of items. The items, or values, contained in a list can be various data types themselves. You can even have lists within lists.

Lists are created using comma separated values between square brackets. The format is list_name = [item_1, item_2, item_N]. To create an empty list use: list_name = []. Items in a list can be accessed by index. List indices are zero based, meaning that the first item in the list has an index of 0, the second item has an index of 1, etc. To access an item in a list using an index, enclose the index in square brackets immediately following the list name. The format is list_name[index].

animals = ['man', 'bear', 'pig'] print(animals[0]) print(animals[1]) print(animals[2])

Output:

man bear pig

Not only can you access values by index, you can also set values by index.

animals = ['man', 'bear', 'pig'] print(animals[0]) animals[0] = 'cat' print(animals[0])

Output:

man cat

You can access items starting at the end of the list by using a negative index. The -1 index represents the last item in the list, -2 represents the second to last item in the list, and so on.

animals = ['man', 'bear', 'pig'] print(animals[-1]) print(animals[-2]) print(animals[-3])

Output:

pig bear man



Download



Copyright Disclaimer:
This site does not store any files on its server. We only index and link to content provided by other sites. Please contact the content providers to delete copyright contents if any and email us, we'll remove relevant links or contents immediately.
Popular ebooks
Personalized inhaled bacteriophage therapy for treatment of multidrug-resistant Pseudomonas aeruginosa in cystic fibrosis by unknow(148503)
Eco-friendly approach of bio-indigo synthesis and developing purification methods towards isolation of indigo from indirubin and bacterial fragments by Ramalingam Manivannan & Kaliyan Prabakaran & Young-A Son(147237)
Whisky: Malt Whiskies of Scotland (Collins Little Books) by dominic roskrow(74268)
CONSORT 2025 statement: updated guideline for reporting randomized trials by unknow(66071)
Critical evaluation of the ProfiLER-02 study design and outcomes by Vivek Subbiah & Razelle Kurzrock(65821)
Cardiac gene therapy makes a comeback by Oliver J. Müller & Susanne Hille & Anca Kliesow Remes(65256)
Unveiling the design rules for tunable emission in graphene quantum dots: A high-throughput TDDFT and machine learning perspective by Şener Özönder & Mustafa Coşkun Özdemir & Caner Ünlü(50857)
Covalent hitchhikers guide proteins to the nucleus by Alexander F. Russell & Madeline F. Currie & Champak Chatterjee(30855)
A yeast-based oral therapeutic delivers immune checkpoint inhibitors to reduce intestinal tumor burden by unknow(30837)
Meet the Authors: Christopher R. Mansfield and Emily R. Derbyshire by Christopher R. Mansfield & Emily R. Derbyshire(30543)
What's Done in Darkness by Kayla Perrin(27101)
Topological analysis of non-conjugated ethylene oxide cored dendrimers decorated with tetraphenylethylene: Insights from degree-based descriptors using the polynomial approach by A Theertha Nair & D Antony Xavier & Annmaria Baby & S Akhila(26482)
Investigation of mechanical and self-healing properties of hydroxyl-terminated polybutadiene functionalized with 2-ureido-4-pyrimidinone by Mohsen Kazazi & Mehran Hayaty & Ali Mousaviazar(26435)
The Ultimate Python Exercise Book: 700 Practical Exercises for Beginners with Quiz Questions by Copy(21009)
De Souza H. Master the Age of Artificial Intelligences. The Basic Guide...2024 by Unknown(20772)
D:\Jan\FTP\HOL\Work\Alien Breed - Tower Assault CD32 Alien Breed II - The Horror Continues Manual 1.jpg by PDFCreator(20646)
The Fifty Shades Trilogy & Grey by E L James(19604)
Shot Through the Heart: DI Grace Fisher 2 by Isabelle Grey(19486)
Shot Through the Heart by Mercy Celeste(19344)
Wolf & Parchment: New Theory Spice & Wolf, Vol. 10 by Isuna Hasekura and Jyuu Ayakura(17490)