Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
```bash
git clone <repository-url>
cd repository-name
# cd lab-git-practice-web-dev
# cd lab-git-practice-data-ai
```

3. **Work on the Lab: Edit the Notebook**:
Expand All @@ -46,7 +46,7 @@
```
- Commit the changes with a meaningful message:
```bash
git commit -m "Added my personal introduction to about-me.txt"
git commit -m "Added my personal introduction to about-me.ipynb"
```

5. **Push Your Changes**:
Expand Down
26 changes: 19 additions & 7 deletions about-me.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,36 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Hi! My name is Jane Doe. I’m excited to learn because I want to learn AI to solve real-world problems like automating processes.. A fun fact about me is: I enjoy hiking and working on side projects with Python!.\n"
]
}
],
"source": [
"# About Me\n",
"# Please fill in the following details.\n",
"\n",
"name = \"Your Name Here\"\n",
"reason = \"Why you are interested in AI, Data Analytics, or Data Science\"\n",
"fun_fact = \"One fun fact about yourself or a goal for this course\"\n",
"# name = \"Your Name Here\"\n",
"# reason = \"Why you are interested in AI, Data Analytics, or Data Science\"\n",
"# fun_fact = \"One fun fact about yourself or a goal for this course\"\n",
"\n",
"name = \"Jane Doe\"\n",
"reason = \"I want to learn AI to solve real-world problems like automating processes.\"\n",
"fun_fact = \"I enjoy hiking and working on side projects with Python!\"\n",
"\n",
"print(f\"Hi! My name is {name}. I’m excited to learn because {reason}. A fun fact about me is: {fun_fact}.\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "base",
"language": "python",
"name": "python3"
},
Expand All @@ -51,7 +63,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
"version": "3.11.5"
}
},
"nbformat": 4,
Expand Down