Skip to content

Instantly share code, notes, and snippets.

@priyankas0525
Created September 26, 2020 22:54
Show Gist options
  • Save priyankas0525/146d12f498e2a1c37188c00b8578cb6b to your computer and use it in GitHub Desktop.
Save priyankas0525/146d12f498e2a1c37188c00b8578cb6b to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<center>\n",
" <img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/Logos/organization_logo/organization_logo.png\" width=\"300\" alt=\"cognitiveclass.ai logo\" />\n",
"</center>\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3 align=center>For Loops </h3> \n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Use loops to print out the elements in the list <code>A</code>\n"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"3\n",
"4\n",
"5\n",
"3\n",
"4\n",
"5\n"
]
}
],
"source": [
"A=[3,4,5]\n",
"for a in A:\n",
" print(a)\n",
" \n",
"\n",
"\n",
"\n",
"A=[3,4,5]\n",
"\n",
"for a in A:\n",
" print(a)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3 align=center>While Loops</h3> \n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Find the value of <code> x </code> that will print out the sequence <code> 1,2,..,10 </code>\n"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"1\n",
"2\n"
]
}
],
"source": [
"x=3\n",
"y=1\n",
"while(y != x):\n",
" print(y)\n",
" y\n",
"\n",
"\n",
"\n",
"x=3\n",
"y=1\n",
"while(y != x):\n",
" print(y)\n",
" y=y+1"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<hr>\n",
"\n",
"<h3 align=\"center\"> © IBM Corporation 2020. All rights reserved. <h3/>\n"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python",
"language": "python",
"name": "conda-env-python-py"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.11"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment