Predict the output of the following code.
s= "Test"
rs=
for ch in s:
rs=ch+rs
print(s+rs)
Answers
Answered by
1
The output will be TesttseT
Similar questions