(dst)
| 105 | |
| 106 | |
| 107 | def print_table(dst): |
| 108 | table_title = list(dst.keys()) |
| 109 | from prettytable import PrettyTable |
| 110 | table = PrettyTable(field_names=table_title, header_style="title", header=True, border=True, |
| 111 | hrules=1, padding_width=2, align="c") |
| 112 | table.float_format = "0.4" |
| 113 | table.add_row([dst[i] for i in table_title]) |
| 114 | print(table) |
| 115 | |
| 116 | |
| 117 | def return_seed(nums=10): |
no outgoing calls
no test coverage detected