this post was submitted on 16 Sep 2024
685 points (97.4% liked)

Programmer Humor

32048 readers
1587 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
top 50 comments
sorted by: hot top controversial new old
[–] [email protected] -1 points 2 days ago (2 children)

“Print needs ()”

Oh fuck off. years of code that cannot be easily redone in ANY editor. Whoever OCDd that into python 3 needs to have their asshole kicked up into their mouth.

[–] [email protected] 12 points 2 days ago (1 children)

why would it not have brackets? i detest syntax that is only applicable to a handful of situations and has to be specifically memorized separately from how every other part of the language works.

[–] [email protected] 0 points 1 day ago* (last edited 1 day ago)

Not after 10 years of it not having brackets. And providing no editing ability to change it as a macro. That’s just cruel and inhumane and psychopathic.

[–] [email protected] 18 points 2 days ago (1 children)

Imo is more intuitive the need of () in print,like is a function like any other, why would not use ()?

[–] [email protected] 1 points 1 day ago* (last edited 1 day ago) (1 children)

If you developed it to not have brackets for the first one or two decades. Especially if there’s no possible way to easily edit it. You’re a psychopath to not consider this.

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

That's what major versions are for - breaking changes. Regardless, you should probably be able to fix this with some regex hackery. Something along the lines of

new_file_content = re.sub(r'(?<=\bprint)(\s+)(?!\()', '(', old_file_content)
new_file_content = re.sub(r'(print\(.*?)(\n|$)', r'\1)', new_file_content)

should do the trick.

[–] [email protected] 5 points 2 days ago

I think venv is the best because it's built in. But I'm also not a Python dev.

[–] [email protected] 18 points 2 days ago* (last edited 2 days ago)

oh my fuck. circular imports.

I set out to create a Discord Bot in Python, then gave up trying to use an easy "proper" server-side language and just did it in TypeScript

[–] [email protected] 20 points 2 days ago (1 children)

This is so true & unfortunately everyone keeps telling beginners to start at Python

[–] [email protected] 9 points 1 day ago (1 children)

But and instead of && means beginner friendly

[–] [email protected] 3 points 1 day ago

Embrace your forefather ALGOL: 🤚‍ and, && 👉

load more comments
view more: next ›