diff --git "a/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py" "b/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
index 784c4786901fe9bca013711c43631ee12f02896a..1d8ce7da1edc02971b9fe4a7a2c7eb0e1f71bf19 100644
--- "a/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
+++ "b/\350\207\252\345\212\250\347\213\227\345\261\201\344\270\215\351\200\232\346\226\207\347\253\240\347\224\237\346\210\220\345\231\250.py"
@@ -175,9 +175,9 @@ xx = "学生会退会"
 ]
 
 def 来点名人名言():
-    xx = 名人名言[random.randint(0,len(名人名言)-1)]
-    xx = xx.replace(  "a",前面垫话[random.randint(0,len(前面垫话)-1)] )
-    xx = xx.replace(  "b",后面垫话[random.randint(0,len(后面垫话)-1)] )
+    xx = random.choice(名人名言)
+    xx = xx.replace(  "a", random.choice(前面垫话))
+    xx = xx.replace(  "b", random.choice(后面垫话))
     return xx
 
 def 另起一段():
@@ -196,6 +196,6 @@ for x in xx:
         elif 分支 < 20 :
             tmp += 来点名人名言()
         else:
-            tmp += 废话[random.randint(0,len(废话)-1)]
+            tmp += random.choice(废话)
     tmp = tmp.replace("x",xx)
     print(tmp)