выровнять два столбца из переменных на html странице

Как правильно сделать выравнивание вывода двух переменных на html странице. Как добавить переменные path[11:23] и mtime1 в какой нибудь html тег, что бы эти два столбца у меня были ровные, отформатированные... ?

#! /usr/bin/python3
# -*- coding: utf-8 -*-
import cgi, os
import time
import datetime as dt
import datetime

print ("Content-type: text/html\n\n")
print ("<H1>DGFDGFDG</H1>")

now = dt.datetime.now()
now1 = now.strftime("%Y-%m-%d")
ago = now - dt.timedelta(minutes=10)

for root, dirs, files in os.walk("R:/ROOT"):
    for fname in files:
        path = os.path.join(root, fname)
        st = os.stat(path)
        mtime = dt.datetime.fromtimestamp(st.st_mtime)
        mtime1 = time.strftime("%d.%m.%Y %H:%M:%S", time.localtime(st.st_mtime))
        if mtime > ago:
            print("<br>" + path[11:23] + ' ' + mtime1)
exit()

вывод на html странице, здесь всё красиво, а по факту у меня на странице они не так равно располагаются.

11111111111E 18.06.2020 19:16:09
222222222224 18.06.2020 19:16:09
333333333330 18.06.2020 19:16:03
444444444446 18.06.2020 19:16:08
555555555550 18.06.2020 19:16:09
66666666666C 18.06.2020 19:16:09
77777777777E 18.06.2020 19:16:07
88888888888E 18.06.2020 19:16:06
999999999990 18.06.2020 19:16:09

Ответы (0 шт):