mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
ea2ed412dd
- Python 3 fixes - add `%matplotlib notebook` to plotting example - various copy-editing
7 lines
194 B
Plaintext
7 lines
194 B
Plaintext
# A simple IPython script that lists files in all subdirs
|
|
|
|
from IPython.display import FileLinks, display
|
|
dirs =!ls -d */
|
|
for d in dirs:
|
|
if d != '__pycache__/':
|
|
display(FileLinks(d)) |