In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
Most people do not understand the knowledge points of this article "Python string indexing and slicing instance analysis", so the editor summarizes the following contents, detailed contents, clear steps, and has a certain reference value. I hope you can get something after reading this article. Let's take a look at this "Python string indexing and slicing case analysis" article.
1. Indexing and acquisition of strings
Strings are indexed in the same way as lists. It's just that the list has an index position for each element itself, and the string has an index position for each character.
The index rule is the same as the list
The slice and index are fetched the same as the list
Cannot modify and delete through index (string cannot be modified)
Examples are as follows:
Name = 'Adem'print (name [0]) print (name [- 1])
The implementation results are as follows:
> > A
> > m
2. Find and index functions of string
The function of find and index function: get the index position of the element
The usage of find and index functions:
String.index (item)-> item: query the number of elements and return the index location
String.find (item)-> item: query the number of elements and return the index location
The difference between the find and index functions:
If find cannot get it, it returns-1.
If the index is not available, it will report an error directly.
Examples are as follows:
Info ='My name is Neo'print (info.find ('Neo')) print (info.index (' Neo'))
The implementation results are as follows:
> 11
> 11
Info ='My name is Neo'print (info.find ('Jack')) print (info.index (' Jack'))
The implementation results are as follows:
>-1
> ValueError: substring not found
The above is about the content of this article on "indexing and slicing instance Analysis of Python string". I believe we all have some understanding. I hope the content shared by the editor will be helpful to you. If you want to know more about the relevant knowledge, please 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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.