python中,如何用正则去除列表元素中的一部分,麻烦用最简洁的方法

比如:['tu=d37b3e79010b526f853a69732e5d9600;Path=/uipp', 'cmddl=1f37cdb7dbb39d487ed7ae456241d71c;Path=/kl', 'popod_=e910be433b4e6;Path=/ffg'],这个列表,我需要一次性去除;后面的内容,应该怎么办?

不知道你说的后面的内容是什么内容,哪里是后面
你可以用 re.sub(正则,替换的内容因为你是去掉这里写两个单引号,原始字符串)

# -*- coding: UTF-8 -*-
import re

list = ['tu=d37b3e79010b526f853a69732e5d9600;Path=/uipp', 'cmddl=1f37cdb7dbb39d487ed7ae456241d71c;Path=/kl', 'popod_=e910be433b4e6;Path=/ffg']
list1 = map(lambda x : re.sub(";Path=[^\']+", '', x), list)
print(list1)

['tu=d37b3e79010b526f853a69732e5d9600', 'cmddl=1f37cdb7dbb39d487ed7ae456241d71c', 'popod_=e910be433b4e6']