diff --git a/diy2.py b/diy2.py
index 2e9ad39..af7e7fa 100644
--- a/diy2.py
+++ b/diy2.py
@@ -1,2 +1,4 @@
-bros = ["刘备""关羽""张飞"]
-print(bros)
+a = ["华雄"]
+b = ["袁术","夏侯惇","曹操","关羽"]
+b.remove("关羽")
+print(b)
\ No newline at end of file