Skip to content

Commit 3080ec7

Browse files
new exercise
1 parent e045cab commit 3080ec7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

content/Loops_And_Logic.ipynb

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -421,6 +421,27 @@
421421
"id": "77f2b4c8728fd07b",
422422
"outputs": [],
423423
"execution_count": null
424+
},
425+
{
426+
"metadata": {},
427+
"cell_type": "markdown",
428+
"source": [
429+
"## final exercise - fibbonacci numbers!\n",
430+
"\n",
431+
"i'm sure you've heard of the fibonacci series by now, it's a very famous set of numbers that makes up the golden ratio which is a very aesthetically pleasing visual sight. the fibonacci sight is formed by taking the previous two numbers in the set (starting from 1), and adding them together. the first few numbers are:\n",
432+
"`1, 1, 2, 3, 5, 8, 13`\n",
433+
"\n",
434+
"try using for loops and variables to figure this out!"
435+
],
436+
"id": "ca94294da9c42093"
437+
},
438+
{
439+
"metadata": {},
440+
"cell_type": "code",
441+
"outputs": [],
442+
"execution_count": null,
443+
"source": "# write your code here VVV\n",
444+
"id": "82e68add600bf964"
424445
}
425446
],
426447
"metadata": {

0 commit comments

Comments
 (0)