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