代码如下: def trans_data_to_pair(self,data,index): contents=[ data[i:i+index] for i in range(0,len(data),index) ] print(contents) return contents 经过漫长研究,终于让我
函数定义 def input(*args, **kwargs): # real signature unknown Read a string from standard input. The trailing newline is stripped. The prompt string, if given, is printed to sta