方法一: 切片的方法
a = "hello"
b = len(a)
i = 1
c = ""
while i<=b:
d = a[b-i]
c += d
i+=1
print c
方法二: 将字符串转化成列表 reverse()方法将列表反转(没有返回值) 将列表再次拼接成一个字符串
a = "hello"
b = list(a)
b.reverse()
c = "".join(b)
print c
方法三: 切片的方式
a = "hello"
b = a[::-1]
方法四:reduce
a = "hello"
b = reduce(lambda x,y:y+x,a)
print b
时间: 2024-10-29 19:10:09