aboutsummaryrefslogtreecommitdiff
path: root/py/deathtable.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/deathtable.py')
-rw-r--r--py/deathtable.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/py/deathtable.py b/py/deathtable.py
index f393cc8..45e4f08 100644
--- a/py/deathtable.py
+++ b/py/deathtable.py
@@ -1,7 +1,4 @@
from data import trials
-print('\\table{')
-print('Trial Size& Date& Introduced& Deaths& Pits formed\\cr\\noalign{\\hrule}')
for trial in trials:
print('& '.join(['$\\times$'.join([str(el) for el in trial.size]), str(trial.date), str(trial.intro), str(trial.dead), str(len(trial.pits))])+'\\cr\\noalign{\\hrule}')
-print('}', end='')