Python- how to verify if a string ends with specific string?

前端 未结 4 1403
失恋的感觉
失恋的感觉 2020-12-07 06:21

I have the following string for example: \' 24499 ? 00:02:05 sys-yg-ys\'

How can I verify if the string ends with a string which I got from a

4条回答
  •  有刺的猬
    2020-12-07 06:40

    The str.endswith() function will do this. For example: yourstring.endswith("sys-yg-ys")

提交回复
热议问题