比如:str1 = [1, 2, 3, 4, 5]str2 = [3, 5, 7, 9, 11]我只想保留str2中的7, 9, 11我的写法是:for s in str2: if s in str1: str2.remove(s)但是当数据量比较大时,这样的效率非常低,有没有什么好的方法。