标签: python python-3.x
大家好我试图在python中反转一个字符串,但我无法让它工作。我尝试使用逆转,但它没有工作。我找到了它的替换,但我不能让它正常工作。会鼓励人们的帮助和帮助。
code
word="cba" word[::1] print (word)
答案 0 :(得分:0)
不是word[::1],而是word[::-1]:它是slice,步长为-1。但我无法理解reversed的问题 - 它更简单:reversed(word)。
word[::1]
word[::-1]
reversed(word)