我正在尝试编写一个函数,该函数接受一个字符串并反转该字符串中的单词,然后返回该字符串。我写了这段代码但是当我执行它时没有任何反应。出现空白。
def reverse(tex):
new_w = " "
for i in range(0, len(tex)):
new_w += text[len(tex) - 1 - i]
return new_w
答案 0 :(得分:0)
>> name = "pawan"
>> name[::-1]
>> "nawap"
这样更好,不是吗?
这称为切片。
这里是切片的语法:
[ first char to include : first char to exclude : step ]
编辑:我建议你看看这个link。