Thank you!
Ask HN: Where to learn Python 3 for an experienced Python 2 programmer?
1–3 of 3 posts
Re: Ask HN: Where to learn Python 3 for an experienced Python 2 programmer?
#2To get your scripts working (basically):
- Strings vs bytes (i.e. the reason for v3)
- Parenthesis for print
Some libraries have been changed a little. Personally, urllib has been the one, I have had the most trouble with.
As for the new features. Look at the release-notes which most of the time as pep numbers. Read the peps.
Some keyword could be: - generators
- iterators
- the "format string" string (prefixed with f)
But it is far from a new language... (Just an incompatible on with the one you know, primarily about strings).
Re: Ask HN: Where to learn Python 3 for an experienced Python 2 programmer?
#3Not much to learn. To get your scripts working (basically): - Strings vs bytes (i.e. the reason for v3) - Parenthesis for print Some libraries have been changed a little. Personally, urllib has been the one, I have had the most trouble with. As for the new features. Look at the release-notes which most of the time as pep numbers. Read the peps. Some keyword could be: - generators - iterators - the "format string" str…