Python字符串逆序

def reverse( text ):

  return text[::-1]

 

#使用字符串切片,  ::表示从头到尾, -1表示从最后开始

 

posted @ 2019-02-24 13:31  coffee~  阅读(1535)  评论(0编辑  收藏  举报