字符串逆序输出 描述 用户输入一个字符串,倒序输出。 输入格式 输入一个字符串 输出格式 一个倒序的字符串 输入输出示例 输入 hello 输出 olleh 代码 print(input()[::-1])