获得用户输入的一个字符串,将字符串逆序输出,同时紧接着输出该字符串所包含字符的个数。
a = input() a = a[::-1] count = len(a) print(a) print(count)
s = input()print(s[::-1],end="")print(len(s))