About the Tutorial



Download 2,85 Mb.
Pdf ko'rish
bet52/234
Sana28.05.2022
Hajmi2,85 Mb.
#614232
1   ...   48   49   50   51   52   53   54   55   ...   234
Bog'liq
python3 tutorial 060821094426

Loop Type 
Description 
while loop 
Repeats a statement or group of statements while a given 
condition is TRUE. It tests the condition before executing the 
loop body. 
for loop 
Executes a sequence of statements multiple times and 
abbreviates the code that manages the loop variable. 
8.
 
Python 3 – Loops


Python 3 
52 
nested loops 
You can use one or more loop inside any another while, or 
for loop. 
while Loop Statements
 

while
loop statement in Python programming language repeatedly executes a target 
statement as long as a given condition is true. 
Syntax 
The syntax of a 
while
loop in Python programming language is-
while expression: 
statement(s) 
Here, 
statement(s)
may be a single statement or a block of statements with uniform 
indent. The 
condition
may be any expression, and true is any non-zero value. The loop 
iterates while the condition is true.
When the condition becomes false, program control passes to the line immediately 
following the loop. 
In Python, all the statements indented by the same number of character spaces after a 
programming construct are considered to be part of a single block of code. Python uses 
indentation as its method of grouping statements. 
Flow Diagram 


Python 3 
53 
Here, a key point of the while loop is that the loop might not ever run. When the condition 
is tested and the result is false, the loop body will be skipped and the first statement after 
the while loop will be executed. 
Example 
#!/usr/bin/python3 
count = 0 
while (count < 9): 
print ('The count is:', count) 
count = count + 1 
print ("Good bye!") 
When the above code is executed, it produces the following result-
The count is: 0 
The count is: 1 
The count is: 2 
The count is: 3 
The count is: 4 


Python 3 
54 
The count is: 5 
The count is: 6 
The count is: 7 
The count is: 8 
Good bye! 
The block here, consisting of the print and increment statements, is executed repeatedly 
until count is no longer less than 9. With each iteration, the current value of the index 
count is displayed and then increased by 1. 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   48   49   50   51   52   53   54   55   ...   234




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish