python无限循环
无限循环 import timea=[1,2,3,4,5,6]while True: t=a[0] i=0 while i<len(a)-1: a[i]=a[i+1] i+=1 a[len(a)-1]=t p...