this post was submitted on 13 Jun 2023
39 points (100.0% liked)
Programmer Humor
32361 readers
179 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 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
numpy
andpandas
are two different modules that have similar uses, but are most definitely not interchangeable. Line 500 is importingnumpy
, but calling itpandas
. Meaning later on in the code, any time the script makes use ofnumpy
, it actually has to refer to it aspandas
, and vice versa, causing all sorts of confusion and shenanigans.I feel like there should be an award for the most interesting error code, regardless of how highly subjective that is.