檢查以「Hello」開頭的字串
在 Python 中,檢查字串是否以特定前綴開頭很簡單。與使用 Bash 表達式「^hello」驗證字串開頭類似,Python 提供了startswith() 方法。
Python 解
aString = "hello world" print(aString.startswith("hello"))
輸出:
True
程式碼示範了startswith()的用法。如果字串以指定的前綴開頭,則該方法傳回 True;否則傳回 True。否則回傳 False。
附加資訊
以上是如何在Python中檢查字串是否以“Hello”開頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!