'Some values disappear when tab joined in a small terminal window

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



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source