从绳子的末端剥离图案

2024-09-30 16:26:28 发布

您现在位置:Python中文网/ 问答频道 /正文

我想看看是否存在像test d 100.webp这样的文件,然后查看该文件测试.yaml. 因此,我需要从末尾去掉模式“\u100.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')

Tags: 文件代码intestimageyamlfor模式