python編程練習---隊列的實現

利用python實現隊列先進先出的功能 代碼: queue=[] while 1:     a=input("pleasse input something to queue,input 0 to break")     if int(a)==0:         break     queue.append(a)      print("output the queue") while len(
相關文章
相關標籤/搜索