diff --git a/diy1.py b/diy1.py
index b4cc7d0..6c9be23 100644
--- a/diy1.py
+++ b/diy1.py
@@ -1,5 +1,6 @@
 import random
+list = ["石头","剪刀","布"]
 player=input("请出拳:石头/剪刀/布")
 print("玩家出拳:"+player)
-compueer=random.choice(list)
-print("电脑出拳"+compueer)
\ No newline at end of file
+computer=random.choice(list)
+print("电脑出拳"+computer)
\ No newline at end of file