About the Tutorial



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

Nested IF Statements 
There may be a situation when you want to check for another condition after a condition 
resolves to true. In such a situation, you can use the nested 
if 
construct. 
In a nested 
if
construct, you can have an 
if...elif...else
construct inside another 
if...elif...else
construct. 
Syntax 
The syntax of the nested if...elif...else construct may be-
if expression1: 
statement(s) 
if expression2: 
statement(s) 
elif expression3: 
statement(s) 
else 
statement(s) 
elif expression4: 
statement(s) 
else: 
statement(s) 
Example 
# !/usr/bin/python3 
num=int(input("enter number")) 


Python 3 
49 
if num%2==0: 
if num%3==0: 
print ("Divisible by 3 and 2") 
else: 
print ("divisible by 2 not divisible by 3") 
else: 
if num%3==0: 
print ("divisible by 3 not divisible by 2") 
else: 
print ("not Divisible by 2 not divisible by 3") 
When the above code is executed, it produces the following result-
enter number8 
divisible by 2 not divisible by 3 
enter number15 
divisible by 3 not divisible by 2 
enter number12 
Divisible by 3 and 2 
enter number5 
not Divisible by 2 not divisible by 3 
Single Statement Suites 
If the suite of an 
if
clause consists only of a single line, it may go on the same line as the 
header statement. 
Here is an example of a 
one-line if
clause- 
#!/usr/bin/python3 
var = 100 
if ( var == 100 ) : print ("Value of expression is 100") 
print ("Good bye!") 
When the above code is executed, it produces the following result- 
Value of expression is 100 
Good bye! 


Python 3 
50 


Python 3 
51 
In general, statements are executed sequentially- The first statement in a function is 
executed first, followed by the second, and so on. There may be a situation when you need 
to execute a block of code several number of times. 
Programming languages provide various control structures that allow more complicated 
execution paths. 
A loop statement allows us to execute a statement or group of statements multiple times. 
The following diagram illustrates a loop statement. 
Python programming language provides the following types of loops to handle looping 
requirements. 

Download 2,85 Mb.

Do'stlaringiz bilan baham:
1   ...   47   48   49   50   51   52   53   54   ...   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