gpt4 book ai didi

python - 开始于() : more arguments

转载 作者:行者123 更新时间:2023-11-28 21:53:32 25 4
gpt4 key购买 nike

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

感谢您的建议! :)

最佳答案

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

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

关于python - 开始于() : more arguments,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26040346/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com