Browse Source

Remove testing code

Petra Lamborn 5 years ago
parent
commit
dc915cc72e
1 changed files with 0 additions and 10 deletions
  1. 0
    10
      lucas.py

+ 0
- 10
lucas.py View File

@@ -79,16 +79,6 @@ def Jacobi(a, n):
79 79
         return -1 * Jacobi(n, a)
80 80
     return Jacobi(n, a)
81 81
 
82
-print("   ", end=" ")
83
-for k in range(1, 10):
84
-    print("{}".format(k).rjust(2, " "), end=" ")
85
-print()
86
-
87
-for n in range(1, 21, 2):
88
-    print("{}:".format(n).rjust(3, " "), end=" ")
89
-    for k in range(1, 10):
90
-        print("{}".format(Jacobi(k, n)).rjust(2, " "), end=" ")
91
-    print()
92 82
 
93 83
 
94 84