diff options
Diffstat (limited to 'python/deathtable.py')
-rw-r--r-- | python/deathtable.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/python/deathtable.py b/python/deathtable.py deleted file mode 100644 index f393cc8..0000000 --- a/python/deathtable.py +++ /dev/null @@ -1,7 +0,0 @@ -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='') |