home · contact · privacy
Fix txt version indentation.
[berlin-corona-table] / enhance_table.py
index 4ce77925c91c985d1bfb177cb0d7ac5694d2d690..5287c03a3ea30796251eb1fda25455daa25b8632 100755 (executable)
@@ -223,8 +223,8 @@ HTML view: https://plomlompom.com/berlin_corona.html
 
         # Week table header.
         if weekday_count == 0:
-            print(' '*11, '  '.join(sorted_districts[:-1]),
-                  sorted_districts[-1], 'wsum', ' wavg', 'winc')
+            print(' '*10, '  '.join(sorted_districts),
+                  'wsum', ' wavg', 'winc')
             week_start_date = date
 
         # Day data line.
@@ -253,13 +253,13 @@ HTML view: https://plomlompom.com/berlin_corona.html
         weekly_sums = []
         weekly_avgs = []
         weekly_incs = []
-        for district in sorted_districts[:-1]:
+        for district in sorted_districts[1:]:
             weekly_sums += [db[district][week_start_date]['week_sum']]
             weekly_avgs += [db[district][week_start_date]['week_average']]
             weekly_incs += [db[district][week_start_date]['week_incidence']]
         print()
         print('district stats for week from %s to %s:' % (date, week_start_date))
-        print(' '*7, '    '.join(sorted_districts[:-1]))
+        print(' '*7, '    '.join(sorted_districts[1:]))
         print('wsum', ' '.join(['%5.1f' % wsum for wsum in weekly_sums]))
         print('wavg', ' '.join(['%5.1f' % wavg for wavg in weekly_avgs]))
         print('winc', ' '.join(['%5.1f' % winc for winc in weekly_incs]))