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
260 changes: 220 additions & 40 deletions your-code/main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"words = ['play', 'filling', 'bar', 'theatre', 'easygoing', 'date', 'lead', 'that', 'story', 'island']"
"words = ['play', 'filling', 'bar', 'theatre', 'easygoing', 'date', 'lead', 'that', 'story', 'island']\n",
"\n",
"uppercase_words = [i.upper() for i in words]\n",
"\n"
]
},
{
Expand All @@ -25,11 +28,32 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 4,
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"['PLAY',\n",
" 'FILLING',\n",
" 'BAR',\n",
" 'THEATRE',\n",
" 'EASYGOING',\n",
" 'DATE',\n",
" 'LEAD',\n",
" 'THAT',\n",
" 'STORY',\n",
" 'ISLAND']"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# your code here"
"# your code here\n",
"uppercase_words"
]
},
{
Expand All @@ -41,11 +65,29 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 5,
"metadata": {},
"outputs": [],
"outputs": [
{
"data": {
"text/plain": [
"['filling', 'theatre', 'easygoing', 'story', 'island']"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# your code here"
"# your code here\n",
"new_list = []\n",
"\n",
"new_list = [i for i in words if len(i) >= 5]\n",
"\n",
"new_list\n",
"# Display the new_list containing words longer than 6 characters\n",
"new_list"
]
},
{
Expand All @@ -57,11 +99,23 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 6,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"theatre\n",
"that\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"for word in words:\n",
" if word.startswith('t'):\n",
" print(word)"
]
},
{
Expand All @@ -80,11 +134,21 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 7,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"squares_number = [x**2 for x in range(1, 11)]\n",
"print(squares_number)\n"
]
},
{
Expand All @@ -96,11 +160,24 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 8,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[4, 16, 36, 64, 100]\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"\n",
"squares_number1 = [x**2 for x in range(1, 11) if x % 2 == 0]\n",
"print(squares_number1)\n",
"\n",
"\n"
]
},
{
Expand All @@ -112,11 +189,21 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 9,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[64, 256, 576, 1024, 1600, 2304, 3136, 4096, 5184, 6400, 7744, 9216, 10816, 12544, 14400, 16384, 18496, 20736, 23104, 25600, 28224, 30976, 33856, 36864, 40000, 43264, 46656, 50176, 53824, 57600, 61504, 65536, 69696, 73984, 78400, 82944, 87616, 92416, 97344, 102400, 107584, 112896, 118336, 123904, 129600, 135424, 141376, 147456, 153664, 160000, 166464, 173056, 179776, 186624, 193600, 200704, 207936, 215296, 222784, 230400, 238144, 246016, 254016, 262144, 270400, 278784, 287296, 295936, 304704, 313600, 322624, 331776, 341056, 350464, 360000, 369664, 379456, 389376, 399424, 409600, 419904, 430336, 440896, 451584, 462400, 473344, 484416, 495616, 506944, 518400, 529984, 541696, 553536, 565504, 577600, 589824, 602176, 614656, 627264, 640000, 652864, 665856, 678976, 692224, 705600, 719104, 732736, 746496, 760384, 774400, 788544, 802816, 817216, 831744, 846400, 861184, 876096, 891136, 906304, 921600, 937024, 952576, 968256, 984064, 1000000]\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"squares_number2 = [x**2 for x in range(1, 1001) if x % 8 == 0]\n",
"print(squares_number2)"
]
},
{
Expand All @@ -128,7 +215,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
Expand Down Expand Up @@ -170,11 +257,21 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 11,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"5\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"num_elements = len(people)\n",
"print(num_elements)"
]
},
{
Expand All @@ -186,11 +283,24 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 12,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"4\n"
]
}
],
"source": [
"# your code here"
"# your code here\n",
"people_kids = 0\n",
"for person in people:\n",
" if person[\"n_kids\"] != 0:\n",
" people_kids += 1\n",
"print(people_kids)"
]
},
{
Expand All @@ -202,11 +312,24 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 13,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Total of kids: 10\n"
]
}
],
"source": [
"# your code here"
"\n",
"total_kids = 0\n",
"for person in people:\n",
" total_kids += person[\"n_kids\"]\n",
"\n",
"print(\"Total of kids:\", total_kids)"
]
},
{
Expand All @@ -218,17 +341,79 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 14,
"metadata": {},
"outputs": [],
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"[{'name': 'Juan', 'age': 34, 'n_kids': 2}, {'name': 'Pepe', 'age': 27, 'n_kids': 0}, {'name': 'Sonia', 'age': 41, 'n_kids': 1}, {'name': 'Lucía', 'age': 22, 'n_kids': 2}, {'name': 'Leo', 'age': 55, 'n_kids': 5}]\n"
]
}
],
"source": [
"# your code here"
"print(people)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Name: Juan\n",
"Age: 35\n",
"Kids: 2\n",
"-------------------------\n",
"\n",
"Name: Pepe\n",
"Age: 28\n",
"Kids: 0\n",
"-------------------------\n",
"\n",
"Name: Sonia\n",
"Age: 42\n",
"Kids: 2\n",
"-------------------------\n",
"\n",
"Name: Lucía\n",
"Age: 23\n",
"Kids: 3\n",
"-------------------------\n",
"\n",
"Name: Leo\n",
"Age: 56\n",
"Kids: 5\n",
"-------------------------\n",
"\n"
]
}
],
"source": [
"people_1yearafter = []\n",
"\n",
"for person in people:\n",
" new_person = person.copy()\n",
" new_person[\"age\"] += 1\n",
" if new_person[\"name\"].endswith(\"a\"):\n",
" new_person[\"n_kids\"] += 1\n",
" people_1yearafter.append(new_person)\n",
"\n",
"for person in people_1yearafter:\n",
" print(f\"Name: {person['name']}\")\n",
" print(f\"Age: {person['age']}\")\n",
" print(f\"Kids: {person['n_kids']}\")\n",
" print(\"-\" * 25 + \"\\n\")\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
Expand All @@ -242,7 +427,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.13"
"version": "3.13.8"
},
"toc": {
"base_numbering": 1,
Expand Down Expand Up @@ -285,11 +470,6 @@
"_Feature"
],
"window_display": false
},
"vscode": {
"interpreter": {
"hash": "aee8b7b246df8f9039afb4144a1f6fd8d2ca17a180786b69acc140d282b71a49"
}
}
},
"nbformat": 4,
Expand Down