python編程練習---棧的實現

利用python實現進棧、出棧 代碼: stack=[] i=1 while i:     a=input("input something into stack,input 0 to break")     if int(a)==0:         break     stack.append(a)      print("output the stack") while len(stack)
相關文章
相關標籤/搜索