Did you know it takes about 17,000 CPU instructions to print("Hello") in Python? And that it takes ~2 billion of them to import a module?

you are viewing a single comment's thread
view the rest of the comments
[–] 1 point 2 years ago (1 child)

Ahh...that makes sense. I bet you're right.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years ago* (last edited 2 years ago)

    People use Python a lot as a Matlab, Excel/VBA, or R alternative. That was my use for many years. Some of these are compute focused problems and if the dataset is large enough and the computations complex enough then speed can be an issue.

    As far as loading packages and printing. Who cares. These are not computationally intensive and are typically IO bound.

  • source
  • parent