0

我想看看是否存在像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')
4

1 回答 1

1

做这个:

suffix = '_100.webp'
if image.endswith(suffix):
    image_strip = image[:-len(suffix)]
    snapshot_markup = os.path.join(image_strip + 'yaml')
于 2013-05-04T07:11:27.937 回答