Python中有兩種方法可以檢查字符串的開始和結束:
s = "Hello, world!"
# 檢查字符串是否以特定的前綴開始
if s.startswith("Hello"):
print("String starts with 'Hello'")
# 檢查字符串是否以特定的后綴結束
if s.endswith("world!"):
print("String ends with 'world!'")
s = "Hello, world!"
# 檢查字符串的前幾個字符是否與特定字符串相同
if s[:5] == "Hello":
print("String starts with 'Hello'")
# 檢查字符串的最后幾個字符是否與特定字符串相同
if s[-6:] == "world!":
print("String ends with 'world!'")
這兩種方法都可以用來檢查字符串的開始和結束,選擇其中一種方法即可。