Browse Source

not using format strings

no_compress
Raphael Roberts 7 years ago
parent
commit
63985520e4
  1. 4
      print2d.py

4
print2d.py

@ -18,9 +18,9 @@ def print2d(l,datetime_format = "%A, %B %e, %Y %H:%M:%S",seperator= ' | ',spacer
fmt_row = '{content}'
if l_end:
fmt_row = f'{l_end} ' + fmt_row
fmt_row = '{} {}'.format(l_end,fmt_row)
if r_end:
fmt_row = fmt_row + f' {r_end}'
fmt_row = '{} {}'.format(fmt_row,r_end)
done = []
for row in l:

Loading…
Cancel
Save