python3_with_pleasure icon indicating copy to clipboard operation
python3_with_pleasure copied to clipboard

A short guide on features of Python 3 with examples

Results 3 python3_with_pleasure issues
Sort by recently updated
recently updated
newest added

There is an ongoing effort with translating this post to Chinese (README_CN.md). Help is appreciated! (don't forget to add yourself in translators)

It might be worth mentioning that `glob.glob` and `pathlib.Path.glob` work slightly differently. `glob.glob` [treats dotfiles specially](https://docs.python.org/3/library/glob.html), while `pathlib.Path.glob` uses `**` [only to match directories](https://docs.python.org/3/library/pathlib.html#pathlib.Path), not files. It's easy to use...