Skip to content

Commit

Permalink
Created using Colaboratory
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhir2016 committed May 18, 2020
1 parent e40dd3d commit 7ba7b46
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions Python_Flow_Control.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"name": "Python Flow Control.ipynb",
"provenance": [],
"authorship_tag": "ABX9TyPkOODJSEcSHzplh/52Mc6U",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/github/sudhir2016/Alexa/blob/master/Python_Flow_Control.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "rPmq-Z4DEvvI",
"colab_type": "text"
},
"source": [
"For Loop"
]
},
{
"cell_type": "code",
"metadata": {
"id": "wGbDqW9OEntc",
"colab_type": "code",
"colab": {
"base_uri": "https://localhost:8080/",
"height": 187
},
"outputId": "2ff75bea-271a-4bd4-c53f-0ea347860b33"
},
"source": [
"for i in range(10):\n",
" print(i)"
],
"execution_count": 104,
"outputs": [
{
"output_type": "stream",
"text": [
"0\n",
"1\n",
"2\n",
"3\n",
"4\n",
"5\n",
"6\n",
"7\n",
"8\n",
"9\n"
],
"name": "stdout"
}
]
}
]
}

0 comments on commit 7ba7b46

Please sign in to comment.