关于python:如何将输入的开始移动到和?

How to move the beginning of an input to the and?

本问题已经有最佳答案,请猛点这里访问。

假设我有一个输入:

1
SA3213023215

我想将SA移动到输入的最后。我该怎么做?


假设sa3213023215是字符串(默认输入),则可以使用字符串切片:

1
2
3
s ="SA3213023215"
s2 = s[2:] + s[:2]
# yields 3213023215SA