summaryrefslogtreecommitdiff
path: root/notebooks/dictionaries.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'notebooks/dictionaries.ipynb')
-rw-r--r--notebooks/dictionaries.ipynb40
1 files changed, 40 insertions, 0 deletions
diff --git a/notebooks/dictionaries.ipynb b/notebooks/dictionaries.ipynb
index e69de29..dabcc4f 100644
--- a/notebooks/dictionaries.ipynb
+++ b/notebooks/dictionaries.ipynb
@@ -0,0 +1,40 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Activity 19P\n",
+ "\n",
+ "TEST_CLASS_EXAM_DATA = {\n",
+ " \"Justin\": 0,\n",
+ " \"Kim Jong Un\": 69,\n",
+ " \"Kim Il-Sung\": 150,\n",
+ "}\n",
+ "\n",
+ "print(TEST_CLASS_EXAM_DATA[\"Justin\"])\n",
+ "\n",
+ "TEST_CLASS_EXAM_DATA[\"Skibidi Rizzler\"] = 66\n",
+ "\n",
+ "del TEST_CLASS_EXAM_DATA[\"Justin\"]\n",
+ "\n",
+ "print(TEST_CLASS_EXAM_DATA)\n"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": ".venv",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "name": "python",
+ "version": "3.12.8"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}