EndymionYoo

导航

2020年3月31日

Python汉诺塔问题

摘要: import turtle class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, item): self.items.append( 阅读全文

posted @ 2020-03-31 11:37 EndymionYoo 阅读(138) 评论(0) 推荐(0) 编辑