我想知道如何在 Python 中检查字符串是否以“hello”开头。

在 Bash 中,我通常会这样做:

if [[ "$string" =~ ^hello ]]; then
 do something here
fi

我如何在 Python 中实现相同的目标?

最佳答案

aString = "hello world"
aString.startswith("hello")

有关 startswith 的更多信息。

关于python - 检查字符串是否以 XXXX 开头,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8802860/

10-16 21:36