diff --git a/diy4.py b/diy4.py
index 956fb49..73acf9c 100644
--- a/diy4.py
+++ b/diy4.py
@@ -4,11 +4,13 @@ student3 = {'语文': 95, '数学': 100, '英语': 93}
 score = {'悟空': student1, '诺依': student2, '小贝': student3} 
 
 name = input("名字:")
-print("*" * 30)   
+print("*"*30)
 if name in score:   
     score = score[name]
     for k, v in score.items():
         print(k, v)
-    print("*" * 30)   
-else:   
-    print("查询错误,请输入正确的名字")   
\ No newline at end of file
+    print("*"*30)
+else:  
+    print("输入有误,请重新输入!")
+
+