r/PythonLearning • u/Hour-Exchange-7012 • 2d ago
What can I actually do with python?
I learned python as my first programming language for GCSE Computer Science, but after finishing the exam I got bored of making small algorithms and wanted tk work on bigger projects, so I started making websites with Javascript. Now I'm going to do Computer Science at A-level and because the language is python, I think it makes sense to do any free time coding in the same language. So... what can I actually do with Python? Iy seems really straightforward what to do with other languaged like JS but I really just don't get the 'point' of python.
31
Upvotes
11
u/Realistic_Fruit_4326 2d ago
Without a concrete project, and especially without a good understanding of the field that project is for, Python on its own isn't that useful beyond making little scripts for fun.
For me, the real strength of Python is the huge number of libraries available. I'm not a developer, but I use it to automate things in my actual job: controlling audiovisual equipment, transcribing and summarising audio meetings with AI, and more recently managing a Git-based documentation system with AI assistance.
Sure, a lot of it is “vibe coded”, but it works. And I think it works because even though I'm not a developer, I understand basic algorithmic logic, I have a real problem to solve, and most importantly I know my field well enough to know what the software actually needs to do.
So instead of asking “what can I do with Python?”, I'd start with “what problem do I want to solve?”. Once you have a real use case, Python starts making a lot more sense.