gpt4 book ai didi

python - Python 中的字符串操作。解析网址

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

print full_url = request.get_host()+request.get_full_path()

结果:

127.0.0.1:8000/test/en/

127.0.0.1:8000/test/ru/

如何判断字符串结尾是/en/还是/ru/

最佳答案

使用endswith:

full_url.endswith('/en/') or full_url.endswith('/ru/')

如果你发现有更多的扩展需要覆盖,你可以考虑使用any:

any(s.endswith(ext) for ext in ['/ru/', '/en/'])

关于python - Python 中的字符串操作。解析网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17744181/

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