by shigemk2

当面は技術的なことしか書かない

2020-08-01から1日間の記事一覧

cli_helpers

>>> from cli_helpers import tabular_output >>> data = [[1, 'Asgard', True], [2, 'Camelot', False], [3, 'El Dorado', True]] >>> headers = ['id', 'city', 'visited'] >>> [print(test) for test in tabular_output.format_output(data, headers, for…