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