Write the output of the following program:
Str = "Python Programming"
index = 0
while index < len(Str):
if Str[index] in "aeiouAEIOU":
print(Str[index].lower(), end=" ")
elif index % 3 == 0:
print(Str[index].upper(), end=" ")
else:
print(Str[index], end="")
print("+", end=" ")
index += 2
Answer:
Answer by student
The output of the program is:
The rest of the post is locked. Join Teachoo Black to see the full post.