Question: What is output by the code below if random. randint ( 0 , 5 ) returns a 3 ? def magic 8 Ball ( question

What is output by the code below if random. randint (0,5) returns a 3?
def magic8Ball(question):
print (question)
num = random.randint (0,5)
if num ==1 :
print("As I see it yes")
elif num ==2 :
print ("Don't count on it")
elif num ==3 :
print("Without a doubt")
else:
print("Reply hazy try again")
Without a doubt
Should I backup my files?
without a doubt
Should I backup my files?
Reply hazy try again
Should I backup my files?
Reply hazy try again
 What is output by the code below if random. randint (0,5)

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!