Skip to content

描述

接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过1000)

输入描述:

输入一行,为一个只包含小写字母的字符串。

输出描述:

输出该字符串反转后的字符串。

示例1

输入:abcd
输出:dcba

代码

python
s = input()
if 0 <= len(s) <= 1000:
    isl = s.islower()
    if isl:
        s = s[::-1]
        print(s)

知识点