From 636fe6eaf079253e3a9b60e85d4d148141c5f1e2 Mon Sep 17 00:00:00 2001 From: Zhongheng Liu on Homelab Date: Tue, 4 Mar 2025 15:30:40 +0200 Subject: feat: funny pickle --- notebooks/file_handling.ipynb | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 notebooks/file_handling.ipynb (limited to 'notebooks/file_handling.ipynb') 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 +} -- cgit