Computer Science, asked by myself3058, 10 months ago

First = "tarantula"
second = ""
for i in range(len(first)-1,-1,-1):
second = first[i] + second
output??

Answers

Answered by XDem
0

ERROR

1) indentation in wrong

2) first is not defined

If we ignore all these errors the output would be nothing as the print command is not there.

but if it was there then ans would be tarantula

Similar questions