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?

      • flatbield@beehaw.org
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        4 months 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.