this post was submitted on 13 Jun 2023
85 points (98.9% liked)

Programmer Humor

31260 readers
684 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 7 points 1 year ago (1 children)

Import pandas as np
Import numpy as tf
Import matplotlib.pyplotlib as pd
Import tensorflow as plt

Or if your more of a c++ guy:

#define true false
#define false true

[–] [email protected] 1 points 1 year ago

OMG, imagine the chaos!

[–] [email protected] 2 points 1 year ago (3 children)

Not a programmer, y funny?

[–] illectrility 2 points 1 year ago

When doing "import x as y", x is the library (set of tools you can use in your program) you import and y is what you would call it throughout your code. This is helpful to shorten things, for example "import numpy as np". Now you can just write "np" instead of "numpy".

In the image you would start every numpy statement with "pandas" and every pandas statement with "numpy". It just makes it confusing.

[–] [email protected] 1 points 1 year ago (1 children)

numpy and pandas are two different modules that have similar uses, but are most definitely not interchangeable. Line 500 is importing numpy, but calling it pandas. Meaning later on in the code, any time the script makes use of numpy, it actually has to refer to it as pandas, and vice versa, causing all sorts of confusion and shenanigans.

[–] [email protected] 2 points 1 year ago

I feel like there should be an award for the most interesting error code, regardless of how highly subjective that is.

[–] Arinshot 1 points 1 year ago

Think of replacing the word "and" with the word "or", and vise versa. Typically it will still make sense, bot not always