120k views
2 votes
What is the correct arrangement?

What is the correct arrangement?-example-1
User Juliza
by
6.9k points

1 Answer

3 votes
havingFun=true

if not havingFun:

print ('Aw, sorry')

else:

print ('Horray')

Remember a boolean variable must have a value before entering a conditional statement. Also remember the not in this question comes first, so the else, or opposite, would be that they are having fun.

User Opena
by
7.1k points