Good evening, everyone. I have, but one quick inquiry. What are the best resources in your opinion to learn python by yourself as a complete beginner?
Thank you all
Highly recommended Automate the Boring Stuff. It'd a free tutorial on YouTube and you learn things like printing, using numbers, then opening files and manipulating data. It's useful straight away.
Certainly not the best, but codecademy is decent. After that, it should be enough for you to learn more deeply from official Python documentation, actual Python code base (from OSS repositories), and specific subjects from blog articles.
But it will highly depend on what type of content you like. For example some people may prefer books over interactive courses. If this is your case, i think this one is recognized as a very good one: https://learnpythonthehardway.org/python3/
Think Python is a top quality book for learning. The latest version of Think Python by Allen B. Downey is available for free online in the form of interactive Jupyter notebooks hosted on Google Colab meaning you don't need to set up, install, or configure anything up front to start learning to program using python. I think it's 100% the best way for complete beginners to start.
Your experience may vary but I'm a network engineer who learned Python and I think learning regex and pandas is invaluable. Depends on what you want to build though. As far as learning resources, I've always liked w3schools, it's free and to the point.
For books, python 101 by Michael Driscoll is very good. I wouldn't spend money on courses. They can be pretty demotivating and expensive.
(Ignore the downvotes on this comment btw; I've obviously touched a nerve with Python developers.)
Depending on what you want to do I would consider learning JavaScript instead:
You already have a JavaScript environment in your web browser (just press ctrl-shift-J).
If you want to do anything web related you basically have to learn and use JavaScript .
The Python tooling story is a complete disaster. If you want to spend all your time fight your tools Python is for you. Especially on Windows. JavaScript (which uses NPM) is not perfect but it is significantly better.
It's like 50x faster.
Overall JavaScript (with Typescript anyway, which you can learn later) is a better language than Python. A notable exception is Python's support of arbitrary precision integers. Using 64-bit integers in JavaScript is a right pain. But that won't remotely be an issue for a beginner.
There are a couple of situations I would maybe pick Python:
AI. For better or worse (it's worse) the entire AI ecosystem is based around Python so you don't really have much choice here if you want to do AI stuff.
Scripts to automate integration of third party services. Generally more common for projects like AWS or whatever to provide Python libraries than JavaScript ones, so it can be easier in Python.
It really depends on what kind of projects do you want to do?
Yes it is good because it's completely true. Of course this question is going to attract a lot of Python developers who haven't used Typescript and don't know what they're missing so I'm not surprised by this response.
Most Python developers still don't even use static type hints. I guess partly because the Python tooling catastrophe makes it a quite a pain to set them up.