Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123117 胡海峰老师 奇偶位互换 Python3 Compile Error 0 MS 0 KB 178 2025-06-28 09:53:41

Tests(0/0):


Code:

n = int(input()) for x in range(n): bins = input() lst= list(bins) for i in range(0,len(bins),2): lst[i],lst[i+1]=lst[i+1],lst[i] print( "".join(lst))


Run Info:

Sorry: TabError: inconsistent use of tabs and spaces in indentation (Main.py, line 5)