从字符串末尾剥去一个模式

时间:2013-05-04 07:08:43

标签: python

我想查看是否存在类似test_100.webp的文件,然后查看文件test.yaml。因此,我需要从最后剥离模式“_100.webp”。我试着使用下面的代码,它给了我一些问题。

 for i, image in enumerate(images_in_item):
        if image.endswith("_100.webp"):
            image_strip = image.rstrip(_100.webp)
            snapshot_markup = os.path.join(image_strip + 'yaml')

1 个答案:

答案 0 :(得分:1)

这样做:

suffix = '_100.webp'
if image.endswith(suffix):
    image_strip = image[:-len(suffix)]
    snapshot_markup = os.path.join(image_strip + 'yaml')