ব্লকের জন্য বাইরের রিটার্ন স্টেটমেন্ট মুছে ফেলুন। এটা কাজ করবে. এছাড়াও শেষ মুদ্রণ বিবৃতি remaove_new
এর পরিবর্তে remove_same থাকা উচিতdef remove_same(L1, L2): L1_copy = L1[:] for e in L1_copy: if e in L2: L1.remove(e) return L1 L1 = [1,2,3,4] L2 = [1,2,5,6] print(remove_same(L1, L2))
ফলাফল:
[3, 4]