本篇内容主要讲解“python的字符串String怎么用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“python的字符串String怎么用”吧!
成都创新互联从2013年开始,先为郾城等服务建站,郾城等地企业,进行企业商务咨询服务。为郾城企业网站制作PC+手机+微官网三网同步一站式服务解决您的所有建站问题。
字符串String
输入:
#!/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))
输出:
$ 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
解释:
字符串也是对象,并且很多方法可以调用。
检查字符串的一部分以剥离空格!
字符串是str类的所有对象的一些方法的应用。
使用startwith 判断字符串是否由某个字符开始。
使用 in 判断某个字符是否在字符串出现。
使用find函数找字符的定位。
到此,相信大家对“python的字符串String怎么用”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!