str="Computer Science"
for i in range(0,len(str),5):
if i%2==0:
print(str[:i].upper(),'$')
else:
print(str[i:].lower(),'$')
Answers
Answered by
2
Answer:
$
ter science $
COMPUTER S $
e $
Similar questions
Social Sciences,
2 months ago
English,
2 months ago
History,
5 months ago
English,
11 months ago
Social Sciences,
11 months ago
Math,
11 months ago