this post was submitted on 16 Sep 2024
680 points (97.1% liked)

Programmer Humor

32054 readers
1415 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Smoogs@lemmy.world -1 points 2 days ago (5 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.

[–] driving_crooner@lemmy.eco.br 18 points 2 days ago (2 children)

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

[–] Smoogs@lemmy.world 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.

[–] thebestaquaman@lemmy.world 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.

load more comments (2 replies)