python中的str[::-1]

将字符串str中,所有元素由最后向前颠倒顺序

>>> str="1,2,3,4,5"
>>> str[::-1]
'5,4,3,2,1'

你可能感兴趣的:(python中的str[::-1])