Why does my code behave differently in differently sized windows? Some of the \t0 sequences are not printed in a small terminal window:
values = (3, 3, 'Boss1_320', 1523712, 45056, 1, 1, 4096, 4096, 0, 0, 0, 4096, 40960, 102400)
print(*values, sep='\t')
#3 3 Boss1_320 1523712 45056 1 1 4096 4096 4096 40960 102400
print(*values, sep='\t')
#3 3 Boss1_320 1523712 45056 1 1 4096 4096 0 0 0 4096 40960 102400
