Home  >  Q&A  >  body text

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?

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

typechotypecho2669 days ago1017

reply all(1)I'll reply

  • 大家讲道理

    大家讲道理2017-06-28 09:27:44

    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

    reply
    0
  • Cancelreply