139k views
0 votes
Q) Look at the code sequence and select the correct output

str="Python using Colab"
for i in str:
if(i.isupper()==True):
print(i.lower(), end="")
if(i.islower()==True):
print(i.lower(), end="")

(a) pYTHONUSINGcOLAB
(b) PYTHONUSINGCOLAB
(c) Error
(d) pythonusingcolab​

User Dennbagas
by
4.5k points

1 Answer

6 votes

Answer:

D.

Step-by-step explanation:

User Michael Sepcot
by
4.6k points