小册名称:Python合辑2-字符串常用方法
6、removesuffix()
Python3.9中移除后缀的函数。
s = 'HelloPython'.removesuffix('Python')print(s)# Hello
s = 'HelloPython'.removesuffix('Python')
print(s)
# Hello