1.用reduce函数方法 book = 'Python程序设计' result = reduce(lambda x,y:y+x,book) print(result) 2.字符串切割 book = 'Python程序设计' print(book[::-1]) 3.用reversed方法,把字符串变成列表反转后拼接 result = reversed(list(book)) print(''.join(result)) 4.for循环 book = 'Python程序设计' lenbook =
方法一: 切片的方法 a = "hello"b = len(a)i = 1c = ""while i<=b: d = a[b-i] c += d i+=1print c 方法二: 将字符串转化成列表 reverse()方法将列表反转(没有返回值) 将列表再次拼接成一个字符串 a = "hello"b = list(a)b.reverse()c = "".join(b)print c 方法三: 切片的方式 a =