Session 1.3 Basic Python -3: Loop
3.1 What is Loop
when you coding, many times you need repeat to do same or similar things again and again. You could use copy and paste to repeat the code.
But that’s bad code example, because you could you loop and tell computer how many time you need repeat.
4.2 For Loop
4.2.1 Print “Hello World” 100 times
Below is the example to print “Hello World” 100 time.
for x in range(100):
print("Hello World!")
4.2.2 Use the variable in for loop
The variable x
could be print with str(x)
.
for x in range(100):
print("Hello World!" +str(x))
In python, the x is start fom 0, and end with 99 in this example
4.2.3 Example: Draw 4 Circles
To draw 4 circles like below
Below code will draw the 4 circles:
import turtle
t = turtle.Pen()
for x in range(4):
t.circle(100)
t.left(90)
4.2.4 Practice, draw 6 circles
- Please do it yourself, modify the code in 4.2.3 and change it to draw below 6 circles
- Please try to use the
x
variable to draw 6 circle like below
4.2.5 Advance, change variable with User input
Please practice below code, to see how to let user input the value.
import turtle, time
t = turtle.Pen()
t.speed(10)
# Ask the user for the number of circles in their rosette, default to 20
number_of_circles = int(turtle.numinput("Number of circles", "How many circles in your rosette?", 20))
for x in range(number_of_circles):
t.circle(100)
t.left(360/number_of_circles)
time.sleep(10)
4.3 While Loop
4.3.1 While loop syntax
A while loop statement is Python repeatedly executes a target statement as long as the given condition is true.
while expression:
statement(s)
Flow Diagram:
Example:
i = 1
while i < 10 :
print(i)
i += 1
4.3.2 Try it: Ues While
loop to Repeat Asking and Print your name
Please try below code yourself
The upper code will keep asking your name until you press enter without give any value.
4.4 Break statement of loop
Wile the break
statement , you could stop the loop event if the while condition is true.
4.4.1 Break statement For
loop example:
fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "banana":
break
4.4.2 Break statement While
loop example:
i = 1
while True:
print(i)
i += 1
if( i>10 ):
break
4.5 Continue Statement
Use Continue statement will skip the remain lines of code and to next loop
4.5.1 Continue
statement For
loop example:
The print “banana” will be skip in below code.
fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x)
4.5.2 Continue
statement While
loop example:
The number 3 will not be print by below code.
i = 0
while i < 6:
i += 1
if i == 3:
continue
print(i)
4.6 Double loop
If you never try put a loop inside a loop, you need try it.
import turtle,time
t = turtle.Pen()
t.speed(30)
for x in range(12):
for y in range(4):
t.circle(10)
t.left(90)
t.forward(50)
t.left(30)
time.sleep(10)