1
def my Function (argument):
2
if argument
== 0:
3
4
print "Conditionals are great"
return True
5
else:
6
7
print "Even the else statement"
return False
What modification to the conditional statement
would force the function to return True every time
the code segment is execute?



Answer :

Other Questions