this post was submitted on 10 Aug 2026
-41 points (9.8% liked)
Programming
28077 readers
282 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities !webdev@programming.dev
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Python itself is just a program written in c, every time you do
len(string)you are calling out of the python interpreter into compiled c code. The distinction between python wrapped c library and a python lib can be fuzzy.That's not what I'm talking about. Things like "numpy" which are actually written with a fair amount of C for performance. Or pandas which uses Cython to trans-pile Python to C to compile.
It's not "pure python".