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

What are the characteristics of different types of objects in python

2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

In this issue, the editor will bring you about the characteristics of different types of objects in 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.

1. The string has an index, and the elements in the string can be repeated.

Immutable, unmodifiable.

2. The list can be indexed and sliced.

Elements can be modified and are mutable.

3. Tuples can be regarded as lists that cannot be modified.

Elements cannot be modified directly, but can also be indexed and sliced, similar to lists.

4. The dictionary consists of key values, and the key must be a variable data type.

The value can be arbitrary data and the dictionary is out of order.

String property example

S = 'hello'# index: 0 1234 index starts at 0 print (s [0])-- > hprint (s [1])-- > e# take out the last character print (s [4])-- > oprint (s [- 1])-- > start:stop:step [start:stop:step] from satrt to end-1 Step size is stepprint (s [0:3])-- > helprint (s [0: 4:2])-- > hl# displays all characters print (s [:])-- > hello# shows the first three characters print (s [: 3])-- > reverse print of hello# string (s [::-1])-- > olleh# all characters print except the first character (s [1:]) -> hllo these are the characteristics of different types of python objects shared by the editor. If you happen to have similar doubts, you might as well 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: 0

*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

Development

Wechat

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

12
Report