Skip to content

Commit b014c82

Browse files
committed
version 1.2
1 parent 6e38ba7 commit b014c82

14 files changed

+125
-8
lines changed

00_sommario_corso.ipynb

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,19 @@
5353
"- Programmazione Orientata agli Oggetti, concetti base.\n",
5454
"- Progettare test unitari per i programmi.\n",
5555
"- Progetto conclusivo, realizzare una semplica applicazione applicando i vari concetti appresi.\n",
56-
"- Appendice. La storia di Python\n",
56+
"- Appendice. Informazioni aggiuntive.\n",
5757
"\n",
5858
"---\n"
5959
]
60+
},
61+
{
62+
"cell_type": "markdown",
63+
"id": "footer",
64+
"metadata": {},
65+
"source": [
66+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
67+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
68+
]
6069
}
6170
],
6271
"metadata": {

01_primi_passi.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,15 @@
548548
" result = sum(5, 3)\n",
549549
" print(f\"Result is: {result}\")"
550550
]
551+
},
552+
{
553+
"cell_type": "markdown",
554+
"id": "footer",
555+
"metadata": {},
556+
"source": [
557+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
558+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
559+
]
551560
}
552561
],
553562
"metadata": {

02_sintassi_base.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,15 @@
657657
" else:\n",
658658
" print(\"Try again.\")"
659659
]
660+
},
661+
{
662+
"cell_type": "markdown",
663+
"id": "footer",
664+
"metadata": {},
665+
"source": [
666+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
667+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
668+
]
660669
}
661670
],
662671
"metadata": {

03_strutture_dati.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,15 @@
738738
"\n",
739739
"save_user(**credentials)"
740740
]
741+
},
742+
{
743+
"cell_type": "markdown",
744+
"id": "footer",
745+
"metadata": {},
746+
"source": [
747+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
748+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
749+
]
741750
}
742751
],
743752
"metadata": {

04_gestione_errori.ipynb

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,17 @@
247247
"except ValueError:\n",
248248
" print(f\"Error: \\\"{number_str}\\\" is not a valid int.\")"
249249
]
250-
}
251-
],
250+
},
251+
{
252+
"cell_type": "markdown",
253+
"id": "footer",
254+
"metadata": {},
255+
"source": [
256+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
257+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
258+
]
259+
}
260+
],
252261
"metadata": {
253262
"kernelspec": {
254263
"name": "python3",

05_funzioni_moduli.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,15 @@
584584
"metadata": {},
585585
"outputs": [],
586586
"source": []
587+
},
588+
{
589+
"cell_type": "markdown",
590+
"id": "footer",
591+
"metadata": {},
592+
"source": [
593+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
594+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
595+
]
587596
}
588597
],
589598
"metadata": {

06_fileio.ipynb

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,17 @@
245245
" rows = file.readlines()\n",
246246
" print(f\"File contains {len(rows)} names.\")"
247247
]
248-
}
249-
],
248+
},
249+
{
250+
"cell_type": "markdown",
251+
"id": "footer",
252+
"metadata": {},
253+
"source": [
254+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
255+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
256+
]
257+
}
258+
],
250259
"metadata": {
251260
"kernelspec": {
252261
"name": "python3",

07_libreria_standard.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,15 @@
348348
"\n",
349349
"print(final_text) # Output: hello, python is a incredible language!"
350350
]
351+
},
352+
{
353+
"cell_type": "markdown",
354+
"id": "footer",
355+
"metadata": {},
356+
"source": [
357+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
358+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
359+
]
351360
}
352361
],
353362
"metadata": {

08_librerie.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,15 @@
492492
"plt.ylabel('Quantity')\n",
493493
"plt.show()"
494494
]
495+
},
496+
{
497+
"cell_type": "markdown",
498+
"id": "footer",
499+
"metadata": {},
500+
"source": [
501+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
502+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
503+
]
495504
}
496505
],
497506
"metadata": {

09_oop.ipynb

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -576,6 +576,15 @@
576576
"p.set_discount(10)\n",
577577
"p.set_discount(150)"
578578
]
579+
},
580+
{
581+
"cell_type": "markdown",
582+
"id": "footer",
583+
"metadata": {},
584+
"source": [
585+
"© 2025 [hanam.io](https://hanam.ai) — All rights reserved. \n",
586+
"This material is the exclusive property of hanam.ai and may not be copied, distributed, or modified without permission."
587+
]
579588
}
580589
],
581590
"metadata": {

0 commit comments

Comments
 (0)