當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String startswith()用法及代碼示例


在本教程中,我們將借助示例了解 Python String startswith() 方法。

如果字符串以指定的前綴(字符串)開頭,startswith() 方法將返回 True。如果不是,則返回 False

示例

message = 'Python is fun'

# check if the message starts with Python
print(message.startswith('Python'))

# Output: True

用法:

用法:

str.startswith(prefix[, start[, end]])

參數:

startswith() 方法最多接受三個參數:

  • prefix- 要檢查的字符串或字符串元組
  • start(可選) - 起始位置字首將在字符串中進行檢查。
  • end(可選) - 結束位置字首將在字符串中進行檢查。

返回:

startswith() 方法返回一個布爾值。

  • 如果字符串以指定前綴開頭,則返回True
  • 如果字符串不以指定前綴開頭,則返回False

示例 1:startswith() 沒有 start 和 end 參數

text = "Python is easy to learn."

result = text.startswith('is easy')
# returns False
print(result)

result = text.startswith('Python is ')
# returns True
print(result)

result = text.startswith('Python is easy to learn.')
# returns True
print(result)

輸出

False
True
True

示例 2:startswith() 帶有 start 和 end 參數

text = "Python programming is easy."

# start parameter: 7
# 'programming is easy.' string is searched
result = text.startswith('programming is', 7)
print(result)

# start: 7, end: 18
# 'programming' string is searched
result = text.startswith('programming is', 7, 18)
print(result)

result = text.startswith('program', 7, 18)
print(result)

輸出

True
False
True

將元組傳遞給startswith()

可以將前綴元組傳遞給 Python 中的 startswith() 方法。

如果字符串以元組的任何項開頭,則 startswith() 返回 True 。如果不是,則返回False

示例 3:startswith() 帶元組前綴

text = "programming is easy"
result = text.startswith(('python', 'programming'))

# prints True
print(result)

result = text.startswith(('is', 'easy', 'java'))

# prints False
print(result)

# With start and end parameter
# 'is easy' string is checked
result = text.startswith(('programming', 'easy'), 12, 19)

# prints False
print(result)

輸出

True
False
False

如果需要檢查字符串是否以指定的後綴結尾,可以使用 endswith() method in Python

相關用法


注:本文由純淨天空篩選整理自 Python String startswith()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。