Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to rework the basic operation of list by Python

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

In this issue, the editor will bring you about the basic operation of how to rewrite the list of Python. The article is rich in content and analyzes and narrates it from a professional point of view. I hope you can get something after reading this article.

At the beginning of this section, let's move on to new knowledge points.

1. List definition

Definition: similar to an array, but not entirely an array.

In python, it is also called sequence.

Let's take a look at defining a list in code: name= [Lao Liu, Lao Jin, Lao Yu]

This list, which we say as an array in other languages, we want the index of the list.

Note: the index of the first position in the sequence is 0

The index of the second location is 1

The index of the third location is 2.

two。 List value

1. Use the index to take a positive value from 0

2. Use the negative number-1 to start the reverse value

For example, in the list name in the above example, the first value we get is name [0]

3. Case exercise

Randomly concatenate the two lists into one sentence.

In this case, we are going to use random numbers.

Note: the randint function is a doubly closed interval, which can obtain the values at both ends.

Comparison: range function is half open and half closed

4. Summary and emphasis

1. Master the value method of the list

2. Master the interval that distinguishes range and randint functions.

5. Case source code

From random import randintname= ["Lao Liu", "Lao Jin", "Lao Yu"] work= ["programmer", "professor", "civil servant"]

For i in range (2): print (name [Randint (0jue 2)] + "Yes" + work [randint (0jue 2)]) the above is the basic operation of the Python rework list shared by the editor. If you happen to have similar doubts, please refer to the above analysis to understand. If you want to know more about it, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 277

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report