13.9k views
5 votes
For Questions 1-4, consider the following code:

def mystery(w, n):

if (n>5):

return w.upper()

else:
return w.lower()


The following line of code will output the string in lower case.

print(mystery("bye"), 0)
Group of answer choices

-True
-False

User Doniel
by
8.5k points

1 Answer

6 votes

ture..........

...

...............

User Huanggh
by
8.0k points