2020年3月30日

摘要: 程序: 1 import turtle 2 3 class Stack: 4 def __init__(self): 5 self.items = [] 6 def isEmpty(self): 7 return len(self.items) == 0 8 def push(self, item) 阅读全文

posted @ 2020-03-30 00:52 我来写作业了 阅读(170) 评论(0) 推荐(0)

摘要: 代码: 1 import math 2 import time 3 scale=14 4 s,m,=1,2 5 print("执行开始".center(scale//2, "-")) 6 start = time.perf_counter() 7 for i in range(scale+1): 8 阅读全文

posted @ 2020-03-30 00:31 我来写作业了 阅读(176) 评论(0) 推荐(0)