python ---- 字符串

本文深入探讨了Python中字符串的各种操作,包括截取、复制、连接、大小写转换、分割、查找、替换及判断等,提供了丰富的示例代码,帮助读者理解和掌握字符串处理技巧。

python ---- 字符串

#字符串截取

#s = "hqelloASd"
#print(s[0:3])
#print(s[:])
#print(s[::2])

#去空格(去左右空格)

#print(s.strip())
#print(s.lstrip())
#print(s.rstrip())

#字符串复制

#s_copy = s
#print(id(s))
#print(id(s_copy))
#s = s.title()
#print(s)
#print(s_copy)
#print(id(s))
#print(id(s_copy))
#s_copy = s[0:2]
#print(id(s))
#print(id(s_copy))

#字符串连接

#s1 = "hpython"
#s2 = s + s1
#print(s2)



import operator
#s2 = operator.concat(s,s1)
#print(s2)


#lt(a, b) ———— 小于
#le(a, b) ———— 小于等于
#eq(a, b) ———— 等于
#ne(a, b) ———— 不等于
#ge(a, b) ———— 大于等于
#gt(a, b) ———— 大于
#b = operator.lt(s,s1)
#print(b)
#print(s<s1)

#字符串长度

#print(len(s),len(s1))

#字符串中最大字符,最小字符

#print(max(s))
#print(min(s1))

#字符串大小写转换

#upper ———— 转换为大写
#lower ———— 转换为小写
#title ———— 转换为标题(每个单词首字母大写)
#capitalize ———— 首字母大写
#swapcase ———— 大写变小写,小写变大写
s = "hqelloASd how are you"
print(s.upper())
print(s.lower())
print(s.title())
print(s.capitalize())
print(s.swapcase())

字符串分割

#s = "hqelloASd how are you"
#ss = s.split("o")
#print(ss)

#字符串连接

#s = "hqelloASd how are you"
#s1 = "ghjkl"
#s2 = s.join(s1)
#print(s2)


a = ['hello','world']
str = "-"
print(str.join(a))

#字符串内查找find

#s1 = 'today is a fine day is'
#index = s1.find("is")
#print(index)

#字符串内替换

s1 = 'todayis a fine day is is is is'
s = s1.replace("is","are",50)
print(s,s1)

#字符串判断


#isdigit ———— 检测字符串时候只由数字组成
#isalnum ———— 检测字符串是否只由数字和字母组成
#isalpha ———— 检测字符串是否只由字母组成
#islower ———— 检测字符串是否只含有小写字母
#isupper ———— 检测字符串是否只含有大写字母
#isspace ———— 检测字符串是否只含有空格
#istitle ———— 检测字符串是否是标题(每个单词首字母大写)
#s = "   d   "
#print(s.isspace())

s = “”"

Variables are used to store information to be referenced and manipulated in a computer program.
They also provide a way of labeling data with a descriptive name, so our programs can be understood
more clearly by the reader and ourselves. It is helpful to think of variables as containers that
hold information. Their sole purpose is to label and store data in memory. This data can then be
used throughout your program.
“”"
#取出所有to

c = s.find("to")
while c!=-1:
    print(s[c:c+2])
    c = s.find("to",c+2)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值