Computer Science, asked by deyaditya02, 9 months ago

find and write the output of the following python code:
def fun(s)
k=len(s)
m=""
for I in range (0,k):
if s[i].isupper( ):
m=m+s[i].lower ( )
elif s[i].salpha ( ):
m=m+s[i].upper
else:
m=m+'bb'
print(m)
fun('school2@com')

Answers

Answered by Anonymous
0

SCHOOL 2 @COM

IS THE OUTPUT MAYBE

Similar questions