哪位大佬给解答一下输入一个字符串s,反向输出它,例如输入"abc",输出"cba"s=input()__________while i>=0: print(s[i],end="") i=i-1print()Ai=len(s)Bi=len(s)-1Ci=len(s)+1D都不对