Computer Science, asked by Anonymous, 1 year ago

In python how to get output of any name in  from backward....like my name shinaya in backward "ayanihs "

Answers

Answered by Anonymous
4
let store your name in string a
in the script
r="shinaya"
p=r[::-1]
print p
and output would be 
#ayanihs 
Similar questions