this post was submitted on 07 Aug 2025
704 points (97.7% liked)
Programmer Humor
37745 readers
364 users here now
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
- Posts must be relevant to programming, programmers, or computer science.
- No NSFW content.
- Jokes must be in good taste. No hate speech, bigotry, etc.
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
please explain I want to laugh
Pythons weak typing means it never knows what is what. It’s up to the programmer to not screw it up.
I think it's more that a ton of popular python libraries (things like pandas, tensor, etc) are actually built in C, so python is just C wearing a mask
Not just libraries, the entire language itself is actually C under the hood
Python is strongly typed. I get your point since it is dynamically typed, but still strongly.
not really what i was going for
one of python's strong suits is it's foreign function interface. it's very easy to call code in other languages from python, which can speed execution up significantly
oh alright. Cheers, heheh. I laughed
One of the main implementations of Python is CPython, which is written in C or C++