2020年10月16日

摘要: 1 def print_yanghui_triangle(t): 2 list_result = [[] for i in range(t)]#存放结果的双重列表 3 #创建一个包含t个列表的列表 4 for i in range(t): 5 list_result[i].append(1)#结果列 阅读全文

posted @ 2020-10-16 23:44 黑炽 阅读(357) 评论(0) 推荐(0) 编辑

摘要: 1 n = int(input('输入一个n的值:')) 2 for i in range(1, n, 1): 3 # center() 返回一个原字符串居中,并使用空格填充至长度 width 的新字符串。默认填充字符为空格 4 print((' * ' * i).center(n * 3))#打印 阅读全文

posted @ 2020-10-16 20:55 黑炽 阅读(22012) 评论(0) 推荐(0) 编辑

摘要: 1 def C(n, i): 2 #isinstance(object, classinfo) 3 #如果参数object是classinfo的实例,或者object是classinfo类的子类的一个实例, 4 #返回True。如果object不是一个给定类型的的对象, 则返回结果总是False。 阅读全文

posted @ 2020-10-16 16:06 黑炽 阅读(3419) 评论(0) 推荐(0) 编辑

摘要: 1 n = int(input('Input an integer: ')) 2 if n == 2: 3 print('Yes') 4 elif n % 2 == 0: 5 print('No') 6 else: 7 m = n % 6 8 #因为大于5的素数必然出现在6的倍数两侧 9 #6x+2 阅读全文

posted @ 2020-10-16 15:54 黑炽 阅读(1727) 评论(0) 推荐(0) 编辑

摘要: 1 import time 2 3 date = time.localtime() 4 year, month, day = date[:3] 5 day_month = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] 6 7 if year % 4 阅读全文

posted @ 2020-10-16 11:23 黑炽 阅读(290) 评论(0) 推荐(0) 编辑

摘要: 1 numbers = [] #使用列表存放临时数据 2 while True: 3 x = input('请输入一个成绩: ') 4 #检查是不是浮点数 5 try: 6 numbers.append(float(x)) 7 except: 8 print('不是合法成绩') 9 10 while 阅读全文

posted @ 2020-10-16 11:00 黑炽 阅读(8162) 评论(0) 推荐(0) 编辑