HJ106 字符逆序

思路:

step1:使用reversed()函数,对输入字符进行倒序排列;
step2:输出打印

代码如下:

for v in reversed(input()):
    print(v , end = '')