Settings

Theme

Ask HN: Learn Python in 2020

2 points by nerform 5 years ago · 5 comments · 1 min read


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

ktpsns 5 years ago

Python 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.

blickentwapft 5 years ago

You can answer these by googling.

  • nerformOP 5 years ago

    True (already done that), but I would like to hear HN community opinion.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection