9 ms·
Ask HN: Learn Python in 2020
Few questions:
1. What is the best and also fastest way to learn the language in 2020? (please recommend resources)
2. Do I need to learn Python 2.x or just latest version?
3. What Python API's/libraries/frameworks are most in demand when applying for work?
Thank you all in advance.
Edit: formatting
- blickentwapft 6y agoYou can answer these by googling.
- nerform 6y agoTrue (already done that), but I would like to hear HN community opinion.
- blickentwapft 6y agoIf you’ve googled then why are you asking about python 2?
- nerform 6y agoBecause Python 2 is in almost every book and online course (even that it has reached end of life).
- ktpsns 6y agoPython 3 vs Python 2 is easily answered: The differences are subtle (there are concise lists of differences), you can apply any old tutorial/book/Ressource and for instance mostly have to ensure to type print(foo) instead of print foo or foo.items() instead of foo.iteritems(). Depending on libraries, it highly depends on what you want to do. Python for data science? There are tons of great open books. Python is great for its REPL shell. You can learn the language by experimenting and exploring. This approach is also part of many API docs in python, in contrast to many other comparable programming languages.