We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69a35e3 commit 5994e23Copy full SHA for 5994e23
If-Else.ipynb
@@ -83,6 +83,28 @@
83
" print('last')"
84
]
85
},
86
+ {
87
+ "cell_type": "code",
88
+ "execution_count": 7,
89
+ "metadata": {},
90
+ "outputs": [
91
92
+ "name": "stdout",
93
+ "output_type": "stream",
94
+ "text": [
95
+ "first\n"
96
+ ]
97
+ }
98
+ ],
99
+ "source": [
100
+ "if 2 == 2:\n",
101
+ " print('first')\n",
102
+ "elif 3 == 3:\n",
103
+ " print('middle')\n",
104
+ "else:\n",
105
+ " print('Last')"
106
107
+ },
108
{
109
"cell_type": "code",
110
"execution_count": null,
0 commit comments