Skip to content
Open
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
51 changes: 22 additions & 29 deletions about-me.ipynb
Original file line number Diff line number Diff line change
@@ -1,43 +1,36 @@
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## About Me Lab: AI Engineering, Data Analytics & Data Science\n",
"\n",
"In this notebook, you'll write a short introduction about yourself using Python!\n",
"\n",
"### Instructions:\n",
"- Fill in the variables below with your details.\n",
"- Run the cell to print your introduction.\n",
"\n",
"### What to Include:\n",
"- Your name.\n",
"- Why you're interested in AI Engineering, Data Analytics or Data Science.\n",
"- A fun fact about yourself or a goal for this course.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 1,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"¡Hola! Soy Alfredo Mpeso.\n",
"Motivo: Quiero aprender IA para automatizar procesos en PYMEs.\n",
"Dato curioso: Me encanta el senderismo y jugar al futbol.\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",
"# datos\n",
"name = \"Alfredo Mpeso\"\n",
"reason = \"Quiero aprender IA para automatizar procesos en PYMEs.\"\n",
"fun_fact = \"Me encanta el senderismo y jugar al futbol.\"\n",
"\n",
"print(f\"Hi! My name is {name}. I’m excited to learn because {reason}. A fun fact about me is: {fun_fact}.\")"
"# Muestra presentación\n",
"print(f\"¡Hola! Soy {name}.\")\n",
"print(f\"Motivo: {reason}\")\n",
"print(f\"Dato curioso: {fun_fact}\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"display_name": "jupyter-ai",
"language": "python",
"name": "python3"
},
Expand All @@ -51,7 +44,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.6"
"version": "3.10.16"
}
},
"nbformat": 4,
Expand Down