Twa kɔ nsɛm atitiriw so
Log in
Sign up for FREE
arrow_back
Laabri

if condition

star
star
star
star
star
Last updated over 5 years ago
10 Nsɛmmisa
0
0
0
1
1
1
1
1
1
1
Asemmisa {{asɛmmisaAhyɛnsode}}
1.

Enter your name

Asemmisa {{asɛmmisaAhyɛnsode}}
2.

Enter your class

Asemmisa {{asɛmmisaAhyɛnsode}}
3.

Enter your section

Asemmisa {{asɛmmisaAhyɛnsode}}
4.

In Python, a decision can be made by using if else statement.

Asemmisa {{asɛmmisaAhyɛnsode}}
5.

checking multiple condition in python requires if elif

Asemmisa {{asɛmmisaAhyɛnsode}}
6.

The if statement in python is

Asemmisa {{asɛmmisaAhyɛnsode}}
7.

The code inside the if statement is executed once

Asemmisa {{asɛmmisaAhyɛnsode}}
8.

What does the following code print to the console?

if 5 > 10:

print("fan")

elif 8 != 9:

print("glass")

else:

print("cream")

Asemmisa {{asɛmmisaAhyɛnsode}}
9.

What does the following code print to the console?

if True:

print(“101”)

else:

print(“202”)

Asemmisa {{asɛmmisaAhyɛnsode}}
10.

What does the following Python program display?

x = 3

if ( x == 0 ):

print "Am I here?"

elif ( x == 3 ):

print "Or here?",

print "Or over here?"