摘要: 实例: 1 要求:列出1~10中大于等于4的数字的平方 2 #################################################### 3 1、普通方法: 4 >>> L = [] 5 >>> for i in range(1,11): 6 ... if i >= 4: 阅读全文
posted @ 2021-08-06 16:16 博二爷 阅读(30) 评论(0) 推荐(1) 编辑
摘要: 代码:来源 1 using System; 2 using System.Collections.Generic; 3 using System.Diagnostics; 4 using System.Linq; 5 using System.Runtime.InteropServices; 6 u 阅读全文
posted @ 2021-08-06 11:57 博二爷 阅读(138) 评论(0) 推荐(0) 编辑