完成接受单个字符串参数文本的scramble_text()函数。该函数返回一个由文本中的字符按打乱顺序组成的新字符串——每对字符的位置都被交换了。您可以假设参数文本的长度至少为1。对于奇数长度的字符串,打乱文本中的最后一个字符保持不变。下面显示了被调用函数的一些示例。
输入: text = "I"
print(f"{text} --scramble--> {scramble_text(text)}")
输出: I --scramble--> I
输入: text = "Hello"
print(f"{text} --scramble--> {scramble_text(text)}")
输出:Hello --scramble--> eHllo
输入: text = "superb"
print(f"{text} --scramble--> {scramble_text(text)}")
输出:superb --scramble--> usepbr
def scramble_text(text):