diff options
Diffstat (limited to 'notebooks/file_handling.ipynb')
-rw-r--r-- | notebooks/file_handling.ipynb | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/notebooks/file_handling.ipynb b/notebooks/file_handling.ipynb new file mode 100644 index 0000000..5a1aa0e --- /dev/null +++ b/notebooks/file_handling.ipynb @@ -0,0 +1,42 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Handling\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "my_file = open('filename.txt', 'w')\n", + "my_file.write(\"thingy\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.7" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} |