Python中如何检查字符串的开始和结束

46次阅读
没有评论

共计 467 个字符,预计需要花费 2 分钟才能阅读完成。

Python 中有两种方法可以检查字符串的开始和结束:

  1. 使用 startswith() 和 endswith() 方法:
s = "Hello, world!"

# 检查字符串是否以特定的前缀开始 
if s.startswith("Hello"):
    print("String starts with 'Hello'")

# 检查字符串是否以特定的后缀结束 
if s.endswith("world!"):
    print("String ends with 'world!'")
  1. 使用切片:
s = "Hello, world!"

# 检查字符串的前几个字符是否与特定字符串相同 
if s[:5] == "Hello":
    print("String starts with 'Hello'")

# 检查字符串的最后几个字符是否与特定字符串相同 
if s[-6:] == "world!":
    print("String ends with 'world!'")

这两种方法都可以用来检查字符串的开始和结束,选择其中一种方法即可。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-04-16发表,共计467字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)