gpt4 book ai didi

python - Python 中的字符串反转

转载 作者:太空狗 更新时间:2023-10-29 21:12:35 26 4
gpt4 key购买 nike

我已经接受了一个整数输入并试图在 Python 中反转它但是徒劳无功!我把它改成了一个字符串,但我还是做不到。有什么办法可以扭转它吗?有内置函数吗?

我无法将整数转换为列表,因此无法应用反向函数。

最佳答案

您可以使用切片运算符来反转字符串:

s = "hello, world"
s = s[::-1]
print s # prints "dlrow ,olleh"

要将整数转换为字符串,将其反转,然后将其转换回整数,您可以执行以下操作:

x = 314159
x = int(str(x)[::-1])
print x # prints 951413

关于python - Python 中的字符串反转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/990934/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com