Question: def findZero ( set ) : i = 0 for n in set: if ( n = = 0 ) : x = true return

def findZero( set):
i=0
for n in set:
if (n==0) :
x= true
return False
numbers ={3,4,8,12,43,21,7,9,8}
y= findZero(numbers)
if True):
print("zero exist")
else:
print("zero doesn't exist")
The output of the code is:
zero doesn't exist
 def findZero( set): i=0 for n in set: if (n==0) :

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!