# HG changeset patch # User Puneeth Chaganti # Date 1286519388 -19800 # Node ID 8a117c6e75f17085e6a8fca0bc608826642ede5b # Parent 0ff3f1a97068fe28418414a79318fa28f587d195 Fixed loops LO script. diff -r 0ff3f1a97068 -r 8a117c6e75f1 loops/script.rst --- a/loops/script.rst Fri Oct 08 11:32:09 2010 +0530 +++ b/loops/script.rst Fri Oct 08 11:59:48 2010 +0530 @@ -1,12 +1,28 @@ -======== - Script -======== +.. Objectives +.. ---------- + +.. Clearly state the objectives of the LO (along with RBT level) + +.. Prerequisites +.. ------------- -{{{ show the welcome slide }}} +.. 1. Name of LO-1 +.. 2. Name of LO-2 +.. 3. Name of LO-3 + +.. Author : + Internal Reviewer : + External Reviewer : + Checklist OK? : [2010-10-05] -Welcome this tutorial on loops in Python. +Script +------ -{{{ show the outline slide }}} +{{{ Show the slide containing title }}} + +Hello Friends. Welcome this tutorial on loops in Python. + +{{{ Show the outline slide }}} In this tutorial, we shall look at ``while`` and ``for`` loops. We shall then look at the ``break``, ``continue`` and ``pass`` keywords @@ -38,8 +54,12 @@ other block in Python, the code within the ``while`` block is indented to the right by 4 spaces. -E%% %% Pause the video here and write a ``while`` loop to print the -squares of all the even numbers below 10. Then, return to the video. +Following is an exercise that you must do. + +%%1%% Write a ``while`` loop to print the squares of all the even +numbers below 10. Then, return to the video. + +Please, pause the video here. Do the exercise and then continue. :: @@ -60,9 +80,13 @@ for n in range(1, 10, 2): print n*n -E%% %% Pause the video here and write a ``for`` loop to print the +Following is an exercise that you must do. + +%%2%% Pause the video here and write a ``for`` loop to print the squares of all the even numbers below 10. Then, return to the video. +Please, pause the video here. Do the exercise and then continue. + :: for n in range(2, 10, 2): @@ -106,10 +130,13 @@ print n*n -E%% %%Pause the video here and using the ``continue`` keyword modify -the ``for`` loop to print the squares of even numbers below 10, to -print the squares of only multiples of 4. (Do not modify the range -function call.) Then, resume the video. +Following is an exercise that you must do. + +%%3%%Using the ``continue`` keyword modify the ``for`` loop to print +the squares of even numbers below 10, to print the squares of only +multiples of 4. (Do not modify the range function call.) + +Please, pause the video here. Do the exercise and then continue. :: for n in range(2, 10, 2): @@ -117,8 +144,15 @@ continue print n*n +{{{ Show summary slide }}} + That brings us to the end of this tutorial. In this tutorial, we have learnt about looping structures in Python and the use of the keywords ``pass``, ``break`` and ``continue``. -Thank You! +{{{ Show the "sponsored by FOSSEE" slide }}} + +This tutorial was created as a part of FOSSEE project, NME ICT, MHRD India + +Hope you have enjoyed and found it useful. +Thank you!