def display_users(users): """Display the list of users by their username.""" data = [['Users']] for user in sorted(users): data.append([user]) table = AsciiTable(data) return table.table