Tiny-Python-3.9-Notebook icon indicating copy to clipboard operation
Tiny-Python-3.9-Notebook copied to clipboard

This repository contains the text for the Tiny Python 3.9 Notebook.

Results 3 Tiny-Python-3.9-Notebook issues
Sort by recently updated
recently updated
newest added

`pathlin.Path` reading and writing of files could be a good addition to the Files sections. ```python from pathlib import Path Path('/tmp/names.txt').write_text('Paul\r\nJohn\n') ```

Would the following change the existing code be more efficient? ```python >>> for name in instruments.keys(): ... print('{} - {}'.format(name, ... instruments[name])) ``` Or ```python >>> for name, instrument in...

Would it be awesome to add list unpacking? ```python people = ['Paul', 'John', 'George'] paul, *rest = people ```