Advertisements
Advertisements
Question
Write the output on execution Python code:
S="Racecar Car Radar"
L=S.split()
for W in L:
x=W upper()
if x==x [: :-1]:
for I in x:
print (I, end="*")
else:
for I in W:
print (I, end="#")
print()
Short Answer
Solution
Output:
R*A*C*E*C*A*R*
C#a#r#
R*A*D*A*R*
Explanation: The sentence is divided into a list of words L by the code. Every word in the list is selected by the loop, which then changes it to uppercase and compares it to its reverse. If both are the same, the word's characters are printed with a "*" between them. If the selected word is not a palindrome, '#' is used to separate the word's letters.
shaalaa.com
Is there an error in this question or solution?