Write output of the following code:
s = “school12@com”
k = len(s)
m = “ ”
for i in range(0,k):
if (s[i].isupper()):
m = m + s[i].lower()
elif s[i].isalpha():
m = m + s[i].upper()
else:
m = m + “bb”
print(m)
Answers
Answered by
0
Answer:
sorry I can't understand your questions
Answered by
0
Answer:
what question I can't understand is sorry
Similar questions