单行交换数组
我知道这是一个非常愚蠢的问题。但是,我非常想知道如何在一行中交换元素。
例如:
a, b = 1, 2
我需要这样的答案
a, b = 2, 1
I know this is very silly question. But, I'm very eager to know how to swap the elements in a single line.
Ex:
a, b = 1, 2
I need the answer like this
a, b = 2, 1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您说您想在标题中交换数组,但不在您的示例中。我同意这个标题,所以...
你也可以这样做...我想...
You say you want to swap an array in your title, yet not in your example. I'm going with the title, so...
You could also do this... I guess...
我想你可以做
I think you can do