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 use the string String of python

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

Share

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

This article mainly explains "how to use the string String of python". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to use the string String of python.

String String

Enter:

#! / usr/bin/python

# Filename: str_methods.py

Name = 'Swaroop'

# This is a string object

If name.startswith ('Swa'):

Print ('Yes, the string starts with "Swa"')

If 'a'in name:

Print ('Yes, it contains the string "a"')

If name.find ('war')! =-1:

Print ('Yes, it contains the string "war"')

Delimiter ='_ * _'

Mylist = ['Brazil',' Russia', 'India',' China']

Print (delimiter.join (mylist))

Output:

$python str_methods.py

Yes, the string starts with "Swa"

Yes, it contains the string "a"

Yes, it contains the string "war"

Brazil_*_Russia_*_India_*_China

Explanation:

Strings are also objects, and many methods can be called.

Check part of the string to peel off spaces!

A string is the application of some methods to all objects of the str class.

Use startwith to determine whether a string begins with a character.

Use in to determine whether a character appears in a string.

Use the find function to find the location of characters.

At this point, I believe you have a deeper understanding of "how to use the string String of python". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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

Internet Technology

Wechat

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

12
Report