Getting started with Python (10) using list and tuple

Source: Internet
Author: User

Getting started with Python (10) using list and tuple

List

One of the data types built into Python is the list: lists. a List is an ordered set of elements that can be added and removed at any time .

For example, by listing the names of all the classmates in the class, you can use a list to Indicate:

>>> classmates = [‘Michael‘, ‘Bob‘, ‘Tracy‘]>>> classmates[‘Michael‘, ‘Bob‘, ‘Tracy‘]

classmatesA variable is a List. len()the number of list elements can be obtained by using a function:

>>> len(classmates)3

Use the index to access the elements of each position in the list, remembering that 0 the index starts from:

classmates[0]classmates[2]‘Tracy‘>>> classmates[3]Traceback (most recent call last):  File "<stdin>", line 1, in <module>IndexError: list index out of range

Python will report a indexerror error when the index is out of range, so make sure the index is not out of bounds and remember that the index len(classmates) - 1 of the last element is .

If you want to take the last element, in addition to calculating the index location, you can also use -1 the index to get the last element directly :

>>> classmates[-1]‘Tracy‘

And so on, you can get the bottom 2nd, the bottom 3rd one:

>>> classmates[-2]‘Bob‘>>> classmates[-3]‘Michael‘>>> classmates[-4]Traceback (most recent call last):  File "<stdin>", line 1, in <module>IndexError: list index out of range

of course, the 4th to the bottom of the Border.

The list is a mutable, ordered table, so you can append an element to the end of the List:

>>> classmates.append(‘Adam‘)>>> classmates[‘Michael‘, ‘Bob‘, ‘Tracy‘, ‘Adam‘]

You can also insert elements into the specified position, such as the index number 1 :

>>> classmates.insert(1, ‘Jack‘)>>> classmates[‘Michael‘, ‘Jack‘, ‘Bob‘, ‘Tracy‘, ‘Adam‘]

To delete the element at the end of the list, use the pop() method:

>>> classmates.pop()‘Adam‘>>> classmates[‘Michael‘, ‘Jack‘, ‘Bob‘, ‘Tracy‘]

To delete an element at a specified location, using the pop(i) method, where the i index is located:

>>> classmates.pop(1)‘Jack‘>>> classmates[‘Michael‘, ‘Bob‘, ‘Tracy‘]

To replace an element with another element, you can assign a value directly to the corresponding index position:

>>> classmates[1] = ‘Sarah‘>>> classmates[‘Michael‘, ‘Sarah‘, ‘Tracy‘]

The data types of the elements in the list can also be different, such as:

>>> L = [‘Apple‘, 123, True]

The list element can also be another list, such as:

>>> s = [‘python‘, ‘java‘, [‘asp‘, ‘php‘], ‘scheme‘]>>> len(s)4

Note that s there are only 4 elements, one of which s[2] is a list, which is easier to understand if it is disassembled:

>>> p = [‘asp‘, ‘php‘]>>> s = [‘python‘, ‘java‘, p, ‘scheme‘]

To get ‘php‘ can write p[1] or s[2][1] , therefore s can be regarded as a two-dimensional array, similar to three-dimensional, four-dimension ... arrays, but rarely used.

If a list does not have an element, it is an empty list with a length of 0:

>>> L = []>>> len(L)0
Tuple

Another ordered list is called a tuple: a tuple. tuple and list are very similar, but once the tuple is initialized, it cannot be modified , for example, the name of the classmate is also listed:

>>> classmates = (‘Michael‘, ‘Bob‘, ‘Tracy‘)

now, classmates This tuple cannot be changed, and it does not have a append (), insert () method . Other methods of acquiring elements are the same as lists, and you can use them normally, classmates[0] classmates[-1] but you cannot assign them to another Element.

What is the meaning of immutable tuple? Because the tuple is immutable, the code is more secure . If possible, you can use a tuple instead of a list as much as Possible.

The trap of a tuple: when you define a tuple, the elements of a tuple must be determined when defined, such as:

>>> t = (1, 2)>>> t(1, 2)

If you want to define an empty tuple, you can write () :

>>> t = ()>>> t()

however, to define a tuple with only 1 elements, if you define This:

>>> t = (1)>>> t1

The definition is not a tuple, it is 1 this number! This is because the parentheses () can represent both tuple and parentheses in the mathematical equation, which creates ambiguity, so Python rules that, in this case, the parentheses are calculated, and the result is naturally 1 .

therefore, only 1 elements of a tuple definition must be added with a comma , to disambiguate:

>>> t = (1,)>>> t(1,)

Python will also add a comma when displaying a tuple of only 1 elements, , lest you misunderstand the parentheses in the mathematical sense.

finally, let's look at a "mutable" tuple:

>>> t = (‘a‘, ‘b‘, [‘A‘, ‘B‘])>>> t[2][0] = ‘X‘>>> t[2][1] = ‘Y‘>>> t(‘a‘, ‘b‘, [‘X‘, ‘Y‘])

This tuple is defined by 3 elements, respectively ‘a‘ , ‘b‘ and a List. Doesn't it mean that once a tuple is defined, it's immutable? Why did you change it later?

Don't worry, let's take a look at the definition when the tuple contains 3 elements:

When we put the list element ‘A‘ and ‘B‘ modify ‘X‘ it to and ‘Y‘ after, the tuple becomes:

On the surface, the elements of a tuple do change, but in fact it is not a tuple element, but a list element. The list that the tuple initially points to is not changed to another list, so the so-called "invariant" of a tuple is thateach element of a tuple is directed to never change . That is, pointing ‘a‘ , cannot be changed to point ‘b‘ , point to a list, can not be changed to point to other objects, but the list itself is variable!

After understanding "point to invariant", How do you create a tuple that does not change the content? It is important to ensure that each element of a tuple cannot be changed.

Summary

List and tuple are Python's built-in ordered set, one variable, one immutable. Choose to use them as Needed.

Getting started with Python (10) using list and tuple

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.