## Description Error occurs when I print a table larger than my console output.  ***Problem, I do not know in advance the number of columns in my tabulate table*** ## Expected behavior Actually, I have this line : ```python print(tabulate(data_results, headers="keys", tablefmt="fancy_grid", maxcolwidths=30, showindex=False)) ``` I would like to replace the maxcolwidths=30 with maxcolwidths='automatic'. This flag will adapt the size of the columns according to the formula `console width / number of columns`