Skip to content

Commit dcbe75b

Browse files
committed
Created using Colaboratory
1 parent 2df2e7b commit dcbe75b

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

ch_4_while_loops.ipynb

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"nbformat": 4,
3+
"nbformat_minor": 0,
4+
"metadata": {
5+
"colab": {
6+
"provenance": [],
7+
"authorship_tag": "ABX9TyNvfjEBR+UU23lMYneAQauU",
8+
"include_colab_link": true
9+
},
10+
"kernelspec": {
11+
"name": "python3",
12+
"display_name": "Python 3"
13+
},
14+
"language_info": {
15+
"name": "python"
16+
}
17+
},
18+
"cells": [
19+
{
20+
"cell_type": "markdown",
21+
"metadata": {
22+
"id": "view-in-github",
23+
"colab_type": "text"
24+
},
25+
"source": [
26+
"<a href=\"https://colab.research.google.com/github/sjasthi/100-plus-python-coding-problems-with-solutions/blob/master/ch_4_while_loops.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
27+
]
28+
},
29+
{
30+
"cell_type": "markdown",
31+
"source": [
32+
"# Chapter 4: Repetition Structures\n",
33+
"## Loops\n",
34+
"### While loops\n"
35+
],
36+
"metadata": {
37+
"id": "8CS7mRXRCHJr"
38+
}
39+
},
40+
{
41+
"cell_type": "code",
42+
"source": [
43+
"print(\"testing\")"
44+
],
45+
"metadata": {
46+
"colab": {
47+
"base_uri": "https://localhost:8080/"
48+
},
49+
"id": "JAo-WnV7DQmr",
50+
"outputId": "393c1a56-8062-4685-a7d3-d0348b7217de"
51+
},
52+
"execution_count": 3,
53+
"outputs": [
54+
{
55+
"output_type": "stream",
56+
"name": "stdout",
57+
"text": [
58+
"testing\n"
59+
]
60+
}
61+
]
62+
}
63+
]
64+
}

0 commit comments

Comments
 (0)