Skip to content

Commit 59a4cea

Browse files
committed
Clear output in builtins notebook
1 parent c887462 commit 59a4cea

File tree

1 file changed

+9
-37
lines changed

1 file changed

+9
-37
lines changed

week4/6_Builtins.ipynb

Lines changed: 9 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,17 +1710,9 @@
17101710
},
17111711
{
17121712
"cell_type": "code",
1713-
"execution_count": 163,
1714-
"metadata": {},
1715-
"outputs": [
1716-
{
1717-
"name": "stdout",
1718-
"output_type": "stream",
1719-
"text": [
1720-
"wklv lv wkh hqfubswhg phvvdjh!\n"
1721-
]
1722-
}
1723-
],
1713+
"execution_count": null,
1714+
"metadata": {},
1715+
"outputs": [],
17241716
"source": [
17251717
"def encrypt(message, encryption_map):\n",
17261718
" encrypted = ''\n",
@@ -1736,17 +1728,9 @@
17361728
},
17371729
{
17381730
"cell_type": "code",
1739-
"execution_count": 164,
1740-
"metadata": {},
1741-
"outputs": [
1742-
{
1743-
"name": "stdout",
1744-
"output_type": "stream",
1745-
"text": [
1746-
"this is the encrypted message!\n"
1747-
]
1748-
}
1749-
],
1731+
"execution_count": null,
1732+
"metadata": {},
1733+
"outputs": [],
17501734
"source": [
17511735
"def create_decryption_map(encryption_map):\n",
17521736
" \"\"\"Actually just flip the keys and the values of the dictionary\"\"\"\n",
@@ -1785,21 +1769,9 @@
17851769
},
17861770
{
17871771
"cell_type": "code",
1788-
"execution_count": 176,
1789-
"metadata": {},
1790-
"outputs": [
1791-
{
1792-
"name": "stdout",
1793-
"output_type": "stream",
1794-
"text": [
1795-
"Please enter numbers splitted by ',': 5,6,3,32\n",
1796-
"The sum until 32 is 32\n",
1797-
"The sum until 6 is 38\n",
1798-
"The sum until 5 is 43\n",
1799-
"The sum until 3 is 46\n"
1800-
]
1801-
}
1802-
],
1772+
"execution_count": null,
1773+
"metadata": {},
1774+
"outputs": [],
18031775
"source": [
18041776
"def convert_to_integers(numbers):\n",
18051777
" integers = []\n",

0 commit comments

Comments
 (0)