程序填空题:反转
键盘上输入一串字符,程序将其倒着输出来。 例如输入:abcd13x 屏幕输出:x31dcba ```python def change(s): return n=input( ) print() ``` 答案: 第1空:s[::-1] 第2空:change(n)
-->
键盘上输入一串字符,程序将其倒着输出来。 例如输入:abcd13x 屏幕输出:x31dcba ```python def change(s): return n=input( ) print() ``` 答案: 第1空:s[::-1] 第2空:change(n)