demo-3.py 156 Bytes Edit 1 2 3 4 5 6 7 8 9 10 a=["华雄"] b=["关羽","刘备","张飞"] b.pop(0) a.insert(0,"关羽") print(b) print(a) a=['华雄'] c=['颜良','文丑'] a.extend(c) print(a)