str.startswith() can be expressed in Python code as: def startswith(source, prefix): return source[:len(prefix)] == prefix.
確定! 回上一頁