A detailed description of how the list and Ganso in Python are used

Source: Internet
Author: User
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 ']

The variable classmates is a list. Use the Len () function to get the number of list elements:

>>> Len (classmates) 3

Use an index to access the elements of each location in the list, remembering that the index starts at 0:

>>> classmates[0] ' Michael ' >>> classmates[1] ' Bob ' >>> classmates[2] ' Tracy ' >>> Classmates[3]traceback (most recent): File "
 
  
   
  ", line 1, in 
  
   
    
   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 of the last element is Len (classmates)-1.

If you want to take the last element, in addition to calculating the index location, you can also use 1 to index, 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 "
 
  
   
  ", line 1, in 
  
   
    
   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 the element at the specified position, use the pop (i) method, where I is the index position:

>>> 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 has only 4 elements, where 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], so 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 classmates[0],classmates[-1] normally, 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, is 1 this number! This is because parentheses () can represent both tuples and parentheses in mathematical formulas, 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 eliminate ambiguity:

>>> 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, namely ' 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 modify the list's elements ' A ' and ' B ' to ' X ' and ' Y ', 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 that each element of a tuple is directed to never change. That point ' a ', it cannot be changed to point to ' B ', pointing to a list, cannot 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.

  • 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.