python倒置字符串

result = s[::-1]
l = list(s)
l.reverse()
result = "".join(l)

你可能感兴趣的:(python倒置字符串)