Search code examples
pythonpython-3.xturtle-graphicspython-turtle

What is the size of turtle?


I am trying to make a program as small as possible (Including the dependencies) and I cant find a way how to find the size of turtle.

Edit: I tried looking for the package size on PyPi but I could not find it.


Solution

  • It's around 140.3 KiB in python 3.9.

    You can find the file and so the size of it in your files in:

    /lib/python3.9#Replace the *3.9* with your python version.
    

    But for it to work you also need a lot of other python modules e.g. tkinter and that's another 709 KiB already.