Find and write the output of the following python code:
s="India@2020"
l=len(s)
m=""
for i in range(0,l):
if(s[i].isupper()):
m=m+s[i].lower()
elif s[i].isalpha():
m=m+s[i].upper()
else:
m=m+"##"
print(m)
Answers
Answered by
1
Answer:
please give me some time for answer
Answered by
0
Answer:look at the picture below
Explanation:
look down
Attachments:
Similar questions