gpt4 book ai didi

Python 字符串函数

转载 作者:太空宇宙 更新时间:2023-11-04 07:36:38 24 4
gpt4 key购买 nike

希望组合一个简单的 python 函数来检查以下内容

给定两个字符串,如果其中一个字符串出现在另一个字符串的末尾,则返回 True,忽略大写/小写差异(换句话说,计算不应该是“大小写敏感”)。

end_other('Hiabc', 'abc') → True
end_other('AbC', 'HiaBc') → True
end_other('abc', 'abXabc') → True

最佳答案

尝试

def end_other(s1, s2):
s1 = s1.lower()
s2 = s2.lower()
return s1.endswith(s2) or s2.endswith(s1)

关于Python 字符串函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33230673/

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