Python的str对象没有内置的反向函数。实现这种方法的最佳方法是什么? 如果提供一个非常简洁的答案,请详细说明其效率。例如,str对象是否转换为其他对象等。
怎么样:
>>> 'hello world'[::-1] 'dlrow olleh'
这是扩展切片语法。它的工作方式是[begin:end:step]-通过保留begin和end并指定步骤-1来反转字符串。
[begin:end:step]-
begin
end
-1