我想知道如何在 Python 中检查字符串是否以“hello”开头。
在 Bash 中,我通常会这样做:
if [[ "$string" =~ ^hello ]]; then do something here fi
我如何在 Python 中实现相同的目标?
aString = "hello world" aString.startswith("hello")
有关 的更多信息startswith。
startswith