标签: python string function return reverse
我想颠倒字符串中字符的顺序 所以把字符串作为参数 并返回带有原始字符串字母的新字符串 例子 - "你好"将返回" olleh"
我所要做的就是:
def reverse(" "): string = input("Give me a word") x = ord(string) print(x)
答案 0 :(得分:2)
你可以这样做:
"hello"[::-1]
您可以阅读有关扩展切片here