python - There is not much data in each row, but the overall data has 7303 rows. When reading each row, why is the display too large?
typecho
typecho 2017-06-28 09:25:44
0
1
1040

Why is Too Big to print displayed during debugging?
Original data

typecho
typecho

Following the voice in heart.

reply all(1)
大家讲道理

Debug generally limits the length of Debug output in order to prevent the IDE from freezing due to excessive output content.
Some IDEs will not output if the length exceeds the length, while others will truncate the portion exceeding the length.
The data on your side exceeds the Debug output length limit of 391396 bytes, so Debug reports an error that it is too long and cannot be printed to the IDE.

In addition, after your split() becomes a list, the printed text is ['0:13', ..., ... ]. Due to the extra commas and quotation marks, it will be better than the original Data length

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!