aboutsummaryrefslogtreecommitdiff
path: root/notebooks/file_handling.ipynb
diff options
context:
space:
mode:
authorZhongheng Liu on Homelab <z.liu@outlook.com.gr>2025-03-04 15:30:40 +0200
committerZhongheng Liu on Homelab <z.liu@outlook.com.gr>2025-03-04 15:30:40 +0200
commit636fe6eaf079253e3a9b60e85d4d148141c5f1e2 (patch)
treedc284e26b8803ed55b5b8eaa99ac86ce816be5f3 /notebooks/file_handling.ipynb
parenta5e6039803ef03c451584ab5bd0fbf01166d10ac (diff)
downloadcs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.tar.gz
cs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.tar.bz2
cs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.zip
feat: funny pickle
Diffstat (limited to 'notebooks/file_handling.ipynb')
-rw-r--r--notebooks/file_handling.ipynb42
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
+}