Startswith():更多参数

时间:2014-09-25 13:50:44

标签: python string

在python中是否有一个函数来检查字符串是否以一定数量的可能性开始? 例如,我想检查字符串A是否以“Ha”,“Ho”,“Hi”开头。我想我可以使用string_A.startswith("Ha", "Ho", "Hi"),但不幸的是,这是不可能的:(

感谢您的任何建议! :)

1 个答案:

答案 0 :(得分:4)

您需要将它们作为单个元组传递:

>>> "Hi, there".startswith(('Ha', 'Ho', 'Hi'))
True
>>> "Hoy, there".startswith(('Ha', 'Ho', 'Hi'))
True
>>> "Hello, there".startswith(('Ha', 'Ho', 'Hi'))
False