diff --git a/notebooks/0-starter.ipynb b/notebooks/0-starter.ipynb
index 0881589..02bea83 100644
--- a/notebooks/0-starter.ipynb
+++ b/notebooks/0-starter.ipynb
@@ -31,10 +31,18 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 1,
"id": "ed67beb7",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Hello World\n"
+ ]
+ }
+ ],
"source": [
"# try run this.\n",
"# If this does not run, fix it first\n",
@@ -58,10 +66,71 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 2,
"id": "b77288e5",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "data": {
+ "text/html": [
+ "
\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " col1 | \n",
+ " col2 | \n",
+ " col3 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 1 | \n",
+ " 2 | \n",
+ " 3 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 11 | \n",
+ " 22 | \n",
+ " 33 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 111 | \n",
+ " 222 | \n",
+ " 333 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " col1 col2 col3\n",
+ "0 1 2 3\n",
+ "1 11 22 33\n",
+ "2 111 222 333"
+ ]
+ },
+ "execution_count": 2,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"import pandas as pd\n",
"\n",
@@ -91,10 +160,18 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 3,
"id": "ad53699f",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Projects/python-project-starter/notebooks\n"
+ ]
+ }
+ ],
"source": [
"# This is my current path\n",
"!pwd"
@@ -102,10 +179,78 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 4,
"id": "ccb07802",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "/Projects/python-project-starter/data/example.csv\n"
+ ]
+ },
+ {
+ "data": {
+ "text/html": [
+ "\n",
+ "\n",
+ "
\n",
+ " \n",
+ " \n",
+ " | \n",
+ " col1 | \n",
+ " col2 | \n",
+ " col3 | \n",
+ "
\n",
+ " \n",
+ " \n",
+ " \n",
+ " | 0 | \n",
+ " 1 | \n",
+ " 2 | \n",
+ " 3 | \n",
+ "
\n",
+ " \n",
+ " | 1 | \n",
+ " 11 | \n",
+ " 22 | \n",
+ " 33 | \n",
+ "
\n",
+ " \n",
+ " | 2 | \n",
+ " 111 | \n",
+ " 222 | \n",
+ " 333 | \n",
+ "
\n",
+ " \n",
+ "
\n",
+ "
"
+ ],
+ "text/plain": [
+ " col1 col2 col3\n",
+ "0 1 2 3\n",
+ "1 11 22 33\n",
+ "2 111 222 333"
+ ]
+ },
+ "execution_count": 4,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
"source": [
"import os\n",
"ROOT_DIR = \"/Projects/python-project-starter\"\n",
@@ -129,13 +274,21 @@
},
{
"cell_type": "code",
- "execution_count": null,
+ "execution_count": 5,
"id": "2190bcd0",
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "st126055 - Supanut Kompayak\n"
+ ]
+ }
+ ],
"source": [
- "name:str = \"\"\n",
- "student_id:str = \"st\"\n",
+ "name:str = \"Supanut Kompayak\"\n",
+ "student_id:str = \"st126055\"\n",
"print(f\"{student_id} - {name}\")"
]
},
@@ -150,7 +303,7 @@
],
"metadata": {
"kernelspec": {
- "display_name": "python-project-starter (3.12.11)",
+ "display_name": "python-project-starter",
"language": "python",
"name": "python3"
},