diff options
author | Zhongheng Liu on Homelab <z.liu@outlook.com.gr> | 2025-03-04 15:30:40 +0200 |
---|---|---|
committer | Zhongheng Liu on Homelab <z.liu@outlook.com.gr> | 2025-03-04 15:30:40 +0200 |
commit | 636fe6eaf079253e3a9b60e85d4d148141c5f1e2 (patch) | |
tree | dc284e26b8803ed55b5b8eaa99ac86ce816be5f3 /notebooks/test.py | |
parent | a5e6039803ef03c451584ab5bd0fbf01166d10ac (diff) | |
download | cs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.tar.gz cs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.tar.bz2 cs-y13-636fe6eaf079253e3a9b60e85d4d148141c5f1e2.zip |
feat: funny pickle
Diffstat (limited to 'notebooks/test.py')
-rw-r--r-- | notebooks/test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/notebooks/test.py b/notebooks/test.py new file mode 100644 index 0000000..bdcc853 --- /dev/null +++ b/notebooks/test.py @@ -0,0 +1,3 @@ +import pickle +x = {"a": 1, "b": {"c": 2, }, } +pickle.dump(x, open("thing.bin", "wb+"))
\ No newline at end of file |