this post was submitted on 20 Jul 2024
123 points (96.9% liked)

Programming

17024 readers
239 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] jjjalljs@ttrpg.network 3 points 2 months ago (1 children)

You can use types in Python and your tools will generate warnings

def something(a: int) -> int: return "potato"

will turn yellow in an IDE more advanced that notepad.

Most editors will also show a red line where the indentation is wrong.

[–] SmartmanApps@programming.dev 4 points 2 months ago (1 children)

Most editors

Same thing still applies - you need to get it past the school admin gatekeeper.

[–] jjjalljs@ttrpg.network 3 points 2 months ago (1 children)

If you're writing any language in like notepad, you're going to have a bad time. I accept your point that school administration may be making questionable choices about what software is installed, but that's not a problem unique to python.

[–] SmartmanApps@programming.dev 3 points 2 months ago

that’s not a problem unique to python

No, but it's a bigger problem for C# than is is for Python (though this is changing now), so all the U.K.-based schools were teaching Python, rather than the more-appropriate C#. That was my original point - that's the dumb reason I had to learn Python, school admin's wanted the lower overhead of the worse language.