3,211 views
18 votes
18 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 Mr Shoubs
by
3.4k points

1 Answer

28 votes
28 votes

Answer:

D.

Step-by-step explanation:

User Oevna
by
3.0k points