Python while写死循环很简单,但是如果使用for呢?
暂时想到了借用列表的可扩展性,写一个死循环
mylist = [1]
for k in mylist:
mylist.append(1)
uhumm....好像没什么意义,不深究了。。。