摘要: import turtleturtle.screensize(800,800) class Stack: def __init__(self): self.items = [] def isEmpty(self): return len(self.items) == 0 def push(self, 阅读全文
posted @ 2019-03-25 21:03 Coylin 阅读(142) 评论(0) 推荐(0) 编辑